From: JAMES.DOW Date: Wed, 22 Sep 2021 21:04:19 +0000 (-0400) Subject: Platform_machine names for greenlet check X-Git-Tag: rel_1_4_25~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=778dfdbec4318c47279ddb3fdfa31b074015928c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Platform_machine names for greenlet check 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 --- diff --git a/doc/build/changelog/unreleased_14/7024.rst b/doc/build/changelog/unreleased_14/7024.rst new file mode 100644 index 0000000000..b7a4019898 --- /dev/null +++ b/doc/build/changelog/unreleased_14/7024.rst @@ -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. diff --git a/setup.cfg b/setup.cfg index 6bc2596aed..7c8e876462 100644 --- 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 =