Skip to content

Commit

Permalink
Update build constraints for aarch64 and python 3.10 (#11980)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianeboyd authored Dec 15, 2022
1 parent a65379d commit c83dfa2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build-constraints.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# build version constraints for use with wheelwright + multibuild
numpy==1.15.0; python_version<='3.7'
numpy==1.17.3; python_version=='3.8'
numpy==1.15.0; python_version<='3.7' and platform_machine!='aarch64'
numpy==1.19.2; python_version<='3.7' and platform_machine=='aarch64'
numpy==1.17.3; python_version=='3.8' and platform_machine!='aarch64'
numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'
numpy==1.19.3; python_version=='3.9'
numpy; python_version>='3.10'
numpy==1.21.3; python_version=='3.10'
numpy; python_version>='3.11'

0 comments on commit c83dfa2

Please sign in to comment.