Skip to content

Commit

Permalink
add comment clarifying the logic behind the chosen numpy versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Aug 20, 2024
1 parent 7507e9e commit 4eb8a9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/requirements-wheel-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ pytest
pytz
tzdata; sys_platform == 'win32'

# We generally test with the oldest numpy version that supports a given Python
# version. However, there is no need to make this strictly the oldest version,
# so it can be broadened to have a single version specification across platforms.
# (`~=x.y.z` specifies a compatible release as `>=x.y.z, == x.y.*`)
numpy~=1.21.3; python_version < "3.11"
numpy~=1.23.2; python_version == "3.11"
numpy~=1.26.0; python_version == "3.12"
Expand Down

0 comments on commit 4eb8a9f

Please sign in to comment.