Merge pull request #259892 from l0b0/chore/bump-numpy-compatibility
python3Packages.numpy: bump supported Python range
This commit is contained in:
commit
b52e881130
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue