]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Platform_machine names for greenlet check
authorJAMES.DOW <JAMES.DOW@GAPAC.COM>
Wed, 22 Sep 2021 21:04:19 +0000 (17:04 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 22 Sep 2021 21:08:03 +0000 (17:08 -0400)
Fixed regression due to #7024 where the reorganization of the "platform
machine" names for greenlet dependency mis-spelled "aarch64" and
additionally omitted uppercase "AMD64" as is needed for windows machines.
Pull request courtesy James Dow.

Fixes: #7024
Closes: #7069
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/7069
Pull-request-sha: dbd7419e21d2eb96a02b34a7f41de8a0382be559

Change-Id: Ia2793376a8fbb71d9b5b02fdc955dddbc0a0e80e

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

diff --git a/doc/build/changelog/unreleased_14/7024.rst b/doc/build/changelog/unreleased_14/7024.rst
new file mode 100644 (file)
index 0000000..b7a4019
--- /dev/null
@@ -0,0 +1,8 @@
+.. change::
+    :tags: bug, platform, regression
+    :tickets: 7024
+
+    Fixed regression due to #7024 where the reorganization of the "platform
+    machine" names for greenlet dependency mis-spelled "aarch64" and
+    additionally omitted uppercase "AMD64" as is needed for windows machines.
+    Pull request courtesy James Dow.
index 6bc2596aed55c4f75ef30d0f76b4743807438c75..7c8e876462f79ed9f700f345c0f0c0f355b3466f 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -40,7 +40,7 @@ package_dir =
 
 install_requires =
     importlib-metadata;python_version<"3.8"
-    greenlet != 0.4.17;python_version>='3' and (platform_machine=='arch64' or (platform_machine=='ppc64le' or (platform_machine=='x86_64' or (platform_machine=='amd64' or (platform_machine=='win32' or platform_machine=='WIN32')))))
+    greenlet != 0.4.17;python_version>='3' 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'))))))
 
 [options.extras_require]
 asyncio =