8000 Bump default numpy on Python3.12 to 1.26.2 (#82) · scipy/oldest-supported-numpy@ed82730 · GitHub
[go: up one dir, main page]

Skip to content

Commit ed82730

Browse files
authored
Bump default numpy on Python3.12 to 1.26.2 (#82)
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 )
1 parent a94726b commit ed82730

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ install_requires =
6060
# however macOS was broken and it's safe to build against 1.21.6 on all platforms (see gh-28 and gh-45)
6161
numpy==1.21.6; python_version=='3.10' and platform_machine!='loongarch64'
6262
numpy==1.23.2; python_version=='3.11'
63-
numpy==1.26.1; python_version=='3.12'
63+
# numpy 1.26 before 1.26.2 enforced the presence of a blas library
64+
# when building from source, e.g. on i686 ( https://github.com/numpy/numpy/issues/24703 )
65+
numpy==1.26.2; python_version=='3.12'
6466

6567
# PyPy requirements
6668
numpy==1.19.0; python_version=='3.6' and platform_machine!='loongarch64' and platform_python_implementation=='PyPy'

0 commit comments

Comments
 (0)
0