guix_mirror_bot pushed a commit to branch ungraft
in repository guix.
commit 2e6c871222ed4c5fbf861487a2013c98eb53b313
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Mon Dec 15 21:41:31 2025 +0100
gnu: python-numpy-groupies: Update to 0.11.3.
* gnu/packages/python-science.scm (python-numpy-groupies): Update to 0.11.3.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Add python-numpy.
[native-inputs]: Remove python-pytest-runner and python-numpy; add
python-pandas,
python-setuptools, and python-setuptools-scm.
Change-Id: Iffe9007c357ac5f299a07cfb1d3fcd20da862c81
Signed-off-by: Andreas Enge <[email protected]>
---
gnu/packages/python-science.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 2b8a43fe4d..884edb4401 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -2354,19 +2354,22 @@ evaluating arrays of polynomials based on
@code{numpy.ndarray objects}.")
(define-public python-numpy-groupies
(package
(name "python-numpy-groupies")
- (version "0.9.14")
+ (version "0.11.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "numpy_groupies" version))
(sha256
- (base32 "000qz0z78rs3l6y0dd2vzvd2lx3mczm2762whwsdnhz6c35axdq1"))))
- (build-system python-build-system)
+ (base32 "1q13gi0018maifhn6dkwi0pprr3p7ikv9r3zffg6p1ayspdazm5f"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest
- python-pytest-runner
- python-numba
- python-numpy))
+ (list python-numba
+ python-pandas
+ python-pytest
+ python-setuptools
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-numpy))
(home-page "https://github.com/ml31415/numpy-groupies")
(synopsis "Tools for group-indexing operations: aggregated sum and more")
(description