From ae3af5addf3dc34555076616d11dc5a70824a51c Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Thu, 24 Apr 2025 17:58:06 +0200 Subject: [PATCH] python312Packages.pandas: fix numpy relaxation replacement --- pkgs/development/python-modules/pandas/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix index 1f7fe4f0586f..f08952fe98e9 100644 --- a/pkgs/development/python-modules/pandas/default.nix +++ b/pkgs/development/python-modules/pandas/default.nix @@ -97,7 +97,7 @@ let # that override globally the `numpy` attribute to point to `numpy_1`. postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "numpy>2.0.0,<2.5" numpy \ + --replace-fail "numpy>=2.0" numpy \ --replace-fail "meson-python==0.13.1" "meson-python>=0.13.1" \ --replace-fail "meson==1.2.1" "meson>=1.2.1" '';