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
--- /dev/null
+.. 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.
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 =