Skip to content

Commit 4d5594a

Browse files
committed
Update macOS ARM64 requirement to 1.21.0
This is the first NumPy version with universal2 wheels, and 1.21.0 was just released so we can do the version bump. This is a follow-up to gh-19 and gh-20
1 parent c3cea7b commit 4d5594a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ install_requires =
3535
numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64'
3636
numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'
3737

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'
38+
# arm64 on Darwin supports Python 3.8 and above requires numpy>=1.21.0
39+
# (first version with universal2 wheels available)
40+
numpy==1.21.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin'
41+
numpy==1.21.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin'
4142

4243
# default numpy requirements
4344
numpy==1.13.3; python_version=='3.5' and platform_machine!='aarch64' and platform_system!='AIX'

0 commit comments

Comments
 (0)