Merge pull request #259892 from l0b0/chore/bump-numpy-compatibility

python3Packages.numpy: bump supported Python range
This commit is contained in:
OTABI Tomoya 2023-10-14 14:01:15 +09:00 committed by GitHub
commit b52e881130
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,7 @@
, lapack
, writeTextFile
, cython
, pythonAtLeast
, pythonOlder
}:
@ -43,7 +44,7 @@ in buildPythonPackage rec {
pname = "numpy";
version = "1.25.1";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9" || pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;