You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: setup.cfg
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,12 +35,16 @@ install_requires =
35
35
numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64'
36
36
numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'
37
37
38
+
# arm64 on Darwin supports Python 3.8 and above requires numpy>=1.20.0
39
+
numpy==1.20.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin'
40
+
numpy==1.20.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin'
41
+
38
42
# default numpy requirements
39
43
numpy==1.13.3; python_version=='3.5' and platform_machine!='aarch64' and platform_system!='AIX'
40
44
numpy==1.13.3; python_version=='3.6' and platform_machine!='aarch64' and platform_system!='AIX' and platform_python_implementation != 'PyPy'
41
45
numpy==1.14.5; python_version=='3.7' and platform_machine!='aarch64' and platform_system!='AIX' and platform_python_implementation != 'PyPy'
42
-
numpy==1.17.3; python_version=='3.8' and platform_machine!='aarch64' and platform_python_implementation != 'PyPy'
43
-
numpy==1.19.3; python_version=='3.9' and platform_python_implementation != 'PyPy'
46
+
numpy==1.17.3; python_version=='3.8' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64' and platform_python_implementation != 'PyPy'
47
+
numpy==1.19.3; python_version=='3.9' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_python_implementation != 'PyPy'
44
48
45
49
numpy==1.19.0; python_version=='3.6' and platform_python_implementation=='PyPy'
46
50
numpy==1.20.0; python_version=='3.7' and platform_python_implementation=='PyPy'
0 commit comments