]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
unblock python 3.14
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 29 Sep 2025 17:17:49 +0000 (13:17 -0400)
committerMichael Bayer <mike_mp@zzzcomputing.com>
Mon, 29 Sep 2025 18:16:30 +0000 (18:16 +0000)
Unblocked automatic greenlet installation for Python 3.14 now that
there are greenlet wheels on pypi for python 3.14.

Change-Id: I2f7c94a01cb8d081f1bde8dc6685eaccba19f5f2

doc/build/changelog/unreleased_20/unblock314.rst [new file with mode: 0644]
setup.cfg

diff --git a/doc/build/changelog/unreleased_20/unblock314.rst b/doc/build/changelog/unreleased_20/unblock314.rst
new file mode 100644 (file)
index 0000000..500ee41
--- /dev/null
@@ -0,0 +1,5 @@
+.. change::
+    :tags: bug, installation
+
+    Unblocked automatic greenlet installation for Python 3.14 now that
+    there are greenlet wheels on pypi for python 3.14.
index eb2cd3605d22128d5397bf29b4247c617991639a..241bf8ab1d9ec5e68ce33b88cc260555f13aa2d2 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -38,7 +38,7 @@ package_dir =
 
 install_requires =
     importlib-metadata;python_version<"3.8"
-    greenlet >= 1;(python_version<"3.14" and (platform_machine=='aarch64' or (platform_machine=='ppc64le' or (platform_machine=='x86_64' or (platform_machine=='amd64' or (platform_machine=='AMD64' or (platform_machine=='win32' or platform_machine=='WIN32')))))))
+    greenlet >= 1;(platform_machine=='aarch64' or (platform_machine=='ppc64le' or (platform_machine=='x86_64' or (platform_machine=='amd64' or (platform_machine=='AMD64' or (platform_machine=='win32' or platform_machine=='WIN32'))))))
     typing-extensions >= 4.6.0
 
 [options.extras_require]