未验证 提交 e33b16b1 编写于 作者: A Adam Weeden 提交者: GitHub

fix: Stop trying to use two different numpy on mac with python >= 3.10

上级 339bca57
......@@ -8,6 +8,6 @@ requires = [
"numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'",
"numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'",
"numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
"numpy==1.21.2; python_version>='3.10'",
"numpy==1.21.2; python_version>='3.10' and platform_system!='Darwin''",
"numpy==1.21.4; python_version>='3.10' and platform_system=='Darwin'"
]
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册