From 7cd36dabf67c58747c76602c92f04ff8d3eac5f3 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 29 Sep 2025 13:17:49 -0400 Subject: [PATCH] unblock python 3.14 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 | 5 +++++ setup.cfg | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 doc/build/changelog/unreleased_20/unblock314.rst diff --git a/doc/build/changelog/unreleased_20/unblock314.rst b/doc/build/changelog/unreleased_20/unblock314.rst new file mode 100644 index 0000000000..500ee41fe9 --- /dev/null +++ b/doc/build/changelog/unreleased_20/unblock314.rst @@ -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. diff --git a/setup.cfg b/setup.cfg index eb2cd3605d..241bf8ab1d 100644 --- 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] -- 2.47.3