This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 9ed08ec367 gnu: python-persim: Update to 0.3.8.
9ed08ec367 is described below
commit 9ed08ec36794dba7f621550aa3c4bbb9ed1676d8
Author: Cayetano Santos <[email protected]>
AuthorDate: Sun Aug 24 16:35:08 2025 +0200
gnu: python-persim: Update to 0.3.8.
* gnu/packages/machine-learning.scm (python-persim): Update to 0.3.8.
[native-inputs]: Remove python-pytest-cov, python-setuptools, and
python-wheel; add python-setuptools-next.
Change-Id: I50931695a928cc12deb5d445de97d71c7a14ff2b
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/machine-learning.scm | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index 8df3178bd8..6b64ca9a6d 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1194,23 +1194,24 @@ cardinality matching from a bipartite graph.")
(define-public python-persim
(package
(name "python-persim")
- (version "0.3.2")
+ (version "0.3.8")
(source
(origin
(method url-fetch)
(uri (pypi-uri "persim" version))
(sha256
- (base32 "0q8wfakx8q4h3ryvw8cba0v6z7xn9139qkrzs3mi1ggyzacnx9d7"))))
+ (base32 "03d4kgakpgj54c3pl9dkqrkbmj6w13gmczkds5jagf3n85c1hgg1"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-deprecated
- python-hopcroftkarp
- python-joblib
- python-matplotlib
- python-numpy
- python-scikit-learn
- python-scipy))
- (native-inputs (list python-pytest python-pytest-cov python-setuptools
- python-wheel))
+ (native-inputs
+ (list python-pytest python-setuptools-next))
+ (propagated-inputs
+ (list python-deprecated
+ python-hopcroftkarp
+ python-joblib
+ python-matplotlib
+ python-numpy
+ python-scikit-learn
+ python-scipy))
(home-page "https://persim.scikit-tda.org")
(synopsis "Tools for analyzing persistence diagrams in Python")
(description