python3Packages.pandas: 2.3.3 -> 3.0.3

https://pandas.pydata.org/docs/whatsnew/index.html
This commit is contained in:
Martin Weinelt 2026-05-12 13:44:21 +02:00
commit 5d71cbbabe

View file

@ -63,14 +63,14 @@
let
pandas = buildPythonPackage rec {
pname = "pandas";
version = "2.3.3";
version = "3.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "pandas-dev";
repo = "pandas";
tag = "v${version}";
hash = "sha256-jY1uM9HmJzoFk26ilbtzJnxAsQhmXS19r73JcFeFWRQ=";
hash = "sha256-G+pWdmft/kcxv97ySa+0ZFEgvMKuNaK33DseZQ8R1z8=";
};
# A NOTE regarding the Numpy version relaxing: Both Numpy versions 1.x &
@ -86,7 +86,7 @@ let
# that override globally the `numpy` attribute to point to `numpy_1`.
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "numpy>=2.0" numpy
--replace-fail "numpy>=2.0.0" numpy
'';
build-system = [