Skip to content

Commit

Permalink
Require latest numpy for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Sep 27, 2023
1 parent 3e3046c commit 125ac34
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions python/requirements-wheel-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@ pytz
tzdata; sys_platform == 'win32'

numpy==1.21.3; platform_system == "Linux" and platform_machine == "aarch64" and python_version < "3.11"
numpy==1.23.4; platform_system == "Linux" and platform_machine == "aarch64" and python_version >= "3.11"
numpy==1.23.4; platform_system == "Linux" and platform_machine == "aarch64" and python_version == "3.11"
numpy==1.26.0; platform_system == "Linux" and platform_machine == "aarch64" and python_version >= "3.12"
numpy==1.19.5; platform_system == "Linux" and platform_machine != "aarch64" and python_version < "3.9"
numpy==1.21.3; platform_system == "Linux" and platform_machine != "aarch64" and python_version >= "3.9" and python_version < "3.11"
numpy==1.23.4; platform_system == "Linux" and platform_machine != "aarch64" and python_version >= "3.11"
numpy==1.23.4; platform_system == "Linux" and platform_machine != "aarch64" and python_version == "3.11"
numpy==1.26.0; platform_system == "Linux" and platform_machine != "aarch64" and python_version >= "3.11"
numpy==1.21.3; platform_system == "Darwin" and platform_machine == "arm64" and python_version < "3.11"
numpy==1.23.4; platform_system == "Darwin" and platform_machine == "arm64" and python_version >= "3.11"
numpy==1.23.4; platform_system == "Darwin" and platform_machine == "arm64" and python_version == "3.11"
numpy==1.26.0; platform_system == "Darwin" and platform_machine == "arm64" and python_version >= "3.12"
numpy==1.19.5; platform_system == "Darwin" and platform_machine != "arm64" and python_version < "3.9"
numpy==1.21.3; platform_system == "Darwin" and platform_machine != "arm64" and python_version >= "3.9" and python_version < "3.11"
numpy==1.23.4; platform_system == "Darwin" and platform_machine != "arm64" and python_version == "3.11"
numpy==1.26.0; platform_system == "Darwin" and platform_machine != "arm64" and python_version >= "3.12"
numpy==1.19.5; platform_system == "Windows" and python_version < "3.9"
numpy==1.21.3; platform_system == "Windows" and python_version >= "3.9" and python_version < "3.11"
numpy==1.23.4; platform_system == "Windows" and python_version >= "3.11"
numpy==1.23.4; platform_system == "Windows" and python_version == "3.11"
numpy==1.26.0; platform_system == "Windows" and python_version >= "3.12"

pandas<1.1.0; platform_system == "Linux" and platform_machine != "aarch64" and python_version < "3.8"
pandas; platform_system == "Linux" and platform_machine != "aarch64" and python_version >= "3.8"
Expand Down

0 comments on commit 125ac34

Please sign in to comment.