python312Packages.numpy: 2.2.6 -> 2.3.0

Changelog: https://github.com/numpy/numpy/releases/tag/v2.3.0
This commit is contained in:
Doron Behar 2025-06-08 13:24:21 +03:00
parent 5df226638d
commit 12eec2b53d

View file

@ -59,7 +59,7 @@ let
in
buildPythonPackage rec {
pname = "numpy";
version = "2.2.6";
version = "2.3.0";
pyproject = true;
disabled = pythonOlder "3.10";
@ -67,7 +67,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
extension = "tar.gz";
hash = "sha256-4pVU4r71SpCqXMB9ps6VWsy4PyGrXeAaYshHiJeyZP0=";
hash = "sha256-WB+H+enp2yy6IUFADhYOndZE7iSHiNb5BjbuuP2SYKY=";
};
patches = lib.optionals python.hasDistutilsCxxPatch [
@ -122,6 +122,8 @@ buildPythonPackage rec {
preCheck = ''
pushd $out
# For numpy-config executable to be available during tests
export PATH=$PATH:$out/bin
'';
postCheck = ''