Skip to content

Commit

Permalink
Fix Numpy Requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenv committed Dec 6, 2022
1 parent 74fa11b commit efa3d33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions misc/requirements_wheel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ numpy==1.19.4 ; python_version == "3.9" and platform_machine !='aarch64'

# NOTE: oldest-supported-numpy (1.19.2) had forward ABI compat problems
numpy==1.20.* ; python_version < "3.10" and platform_machine=='aarch64'
numpy==1.21.* ; python_version >= "3.10"
numpy>=1.23.0 ; python_version >= "3.11"
numpy==1.21.* ; "3.11" > python_version >= "3.10"
numpy>=1.23.2 ; python_version >= "3.11"

#-------------------------------
# Note 11/23/2021: the current version of the AWS sdk does not work with cmake 3.22
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy>=1.16.5 ; python_version < "3.10" and platform_machine != 'aarch64'
numpy>=1.19.2 ; python_version < "3.10" and platform_machine == 'aarch64'
numpy>=1.21.0 ; python_version >= "3.10"
numpy>=1.23.0 ; python_version >= "3.11"
numpy>=1.21.0 ; "3.11" > python_version >= "3.10"
numpy>=1.23.2 ; python_version >= "3.11"
packaging

contextvars ;python_version<"3.7"
Expand Down

0 comments on commit efa3d33

Please sign in to comment.