Skip to content

Commit

Permalink
Bump default numpy on Python3.12 to 1.26.2
Browse files Browse the repository at this point in the history
numpy 1.26 before 1.26.2 enforced the presence of a blas library when building from source, e.g. on i686 ( numpy/numpy#24703 )
  • Loading branch information
nsoranzo committed Dec 12, 2023
1 parent a94726b commit 5773b7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ install_requires =
# however macOS was broken and it's safe to build against 1.21.6 on all platforms (see gh-28 and gh-45)
numpy==1.21.6; python_version=='3.10' and platform_machine!='loongarch64'
numpy==1.23.2; python_version=='3.11'
numpy==1.26.1; python_version=='3.12'
# numpy 1.26 before 1.26.2 enforced the presence of a blas library
# when building from source, e.g. on i686 ( https://github.com/numpy/numpy/issues/24703 )
numpy==1.26.2; python_version=='3.12'

# PyPy requirements
numpy==1.19.0; python_version=='3.6' and platform_machine!='loongarch64' and platform_python_implementation=='PyPy'
Expand Down

0 comments on commit 5773b7f

Please sign in to comment.