python3Packages.statsmodels: 0.14.2 -> 0.14.3

https://github.com/statsmodels/statsmodels/releases/tag/v0.14.3
This commit is contained in:
Martin Weinelt
2024-10-13 11:09:18 +02:00
parent d1adcceab1
commit ceabe1e531
@@ -16,19 +16,19 @@
buildPythonPackage rec {
pname = "statsmodels";
version = "0.14.2";
version = "0.14.3";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-iQVQFHrTqBzaJPC6GlxAIa3BYBCAvQDhka581v7s1q0=";
hash = "sha256-7PNQJkP6k6q+XwvfI477WWCVF8TWCoEWMtMfzc6GwtI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "numpy>=2.0.0rc1,<3" "numpy"
--replace-fail "numpy>=2.0.0,<3" "numpy"
'';
build-system = [