]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
pin setuptools below 69.3 and prepare for "build" for releases
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Jun 2024 15:44:54 +0000 (11:44 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 19 Jun 2024 21:10:07 +0000 (17:10 -0400)
Change-Id: Ib70446cc3c7d7d8acb264ffa2237a0c7aac5a0f5

pyproject.toml

index 903d793d585ab01cb8be049e541b522ccf98a279..075254645d6bb3dd3fdbf6b024bef6015016bca3 100644 (file)
@@ -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]