8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a94726b commit ed82730Copy full SHA for ed82730
setup.cfg
@@ -60,7 +60,9 @@ install_requires =
60
# however macOS was broken and it's safe to build against 1.21.6 on all platforms (see gh-28 and gh-45)
61
numpy==1.21.6; python_version=='3.10' and platform_machine!='loongarch64'
62
numpy==1.23.2; python_version=='3.11'
63
- numpy==1.26.1; python_version=='3.12'
+ # 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'
66
67
# PyPy requirements
68
numpy==1.19.0; python_version=='3.6' and platform_machine!='loongarch64' and platform_python_implementation=='PyPy'
0 commit comments