Skip to content

Update macOS ARM64 requirement to 1.21.0 #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ install_requires =
numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64'
numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'

# arm64 on Darwin supports Python 3.8 and above requires numpy>=1.20.0
numpy==1.20.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin'
numpy==1.20.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin'
# arm64 on Darwin supports Python 3.8 and above requires numpy>=1.21.0
# (first version with universal2 wheels available)
numpy==1.21.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin'
numpy==1.21.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin'

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