diff options
author | JAMES.DOW <JAMES.DOW@GAPAC.COM> | 2021-09-22 17:04:19 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-09-22 17:08:03 -0400 |
commit | 778dfdbec4318c47279ddb3fdfa31b074015928c (patch) | |
tree | 3694f1d0ae8a2128ce9f5dddb9c69eaaa887955e /setup.cfg | |
parent | 15d98c5bea574eaa2010c1b7c15ae1974eae512e (diff) | |
download | sqlalchemy-778dfdbec4318c47279ddb3fdfa31b074015928c.tar.gz |
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
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 = |