From: Mike Bayer Date: Wed, 19 Jun 2024 15:44:54 +0000 (-0400) Subject: pin setuptools below 69.3 and prepare for "build" for releases X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2607262110bdc5c5dc96fc19ddca895a15a58e4e;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git pin setuptools below 69.3 and prepare for "build" for releases Change-Id: Ib70446cc3c7d7d8acb264ffa2237a0c7aac5a0f5 --- diff --git a/pyproject.toml b/pyproject.toml index 903d793d58..075254645d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,11 @@ [build-system] - build-backend = "setuptools.build_meta" - requires = [ - "setuptools>=47", - "cython>=3; platform_python_implementation == 'CPython'", # Skip cython when using pypy - ] +build-backend = "setuptools.build_meta" +requires = [ + # avoid moving to https://github.com/pypa/setuptools/issues/3593 + # until we're ready + "setuptools>=61.0,<69.3", + "cython>=3; platform_python_implementation == 'CPython'", # Skip cython when using pypy +] [project]