1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-20 09:10:30 +02:00

gnu: python-statsmodels: Update to 0.14.4.

* gnu/packages/statistics.scm (python-statsmodels): Update to 0.14.4.
  [native-inputs]: Remove python-colorama, python-cython, python-flake8,
  python-isort, python-joblib, python-pytest, python-pytest-randomly,
  python-pytest-xdist, python-setuptools, and python-wheel; add
  python-cython-3 and python-setuptools-next.

Change-Id: I59164ed861224bfb8230686b2133639a7d1c649e
This commit is contained in:
Sharlatan Hellseher
2025-08-07 14:55:05 +01:00
parent c22b6731d4
commit debc80b4d4

View File

@@ -1272,13 +1272,13 @@ sampler for Markov chain Monte Carlo (MCMC).")
(define-public python-statsmodels
(package
(name "python-statsmodels")
(version "0.14.2")
(version "0.14.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "statsmodels" version))
(sha256
(base32 "1bfnxkzdcz5fj7hh1gc021hc3b9181f1mfph4kd1ra6kg8a501c9"))
(base32 "0rwbi57ckg7hgrmdf0g1paqcvp5n6f06xfzrcz075p30j3ry0sax"))
(modules '((guix build utils)))
(snippet
'(for-each delete-file (find-files "." "\\.c$")))))
@@ -1302,21 +1302,16 @@ sampler for Markov chain Monte Carlo (MCMC).")
(string-append "import matplotlib;matplotlib.use('Agg');"
line))))))))
(propagated-inputs
(list python-numpy python-packaging python-pandas python-patsy
(list python-numpy
python-packaging
python-pandas
python-patsy
python-scipy))
(native-inputs
(list python-colorama
python-cython
python-flake8
python-isort
python-joblib
(list python-cython-3
python-matplotlib
python-pytest
python-pytest-randomly
python-pytest-xdist
python-setuptools-scm
python-setuptools
python-wheel))
python-setuptools-next
python-setuptools-scm))
(home-page
(string-append "https://www.statsmodels.org/v" version "/"))
(synopsis "Statistical modeling and econometrics in Python")