summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2026-03-23 14:28:53 +0100
committerCayetano Santos <csantosb@inventati.org>2026-03-23 14:33:36 +0100
commit90c72fb47e4f2858ed0d71c891c988ce783752cf (patch)
treeb3c670e04f0e7c194aa7f1b24be043ec8c02c16e /gnu
parent3ef5753dbf58adb2a6afd6887e8891bd882cc311 (diff)
gnu: python-ripser: Update to 0.6.14.
* gnu/packages/machine-learning.scm (python-ripser): Update to 0.6.14. [source]: Switch to git-fetch. [native-inputs]: Remove python-wheel. Change-Id: Ic4af33bafddffce51d05d840bc2e92ae297481db
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/machine-learning.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 56d7206860b..3ff8cfe752e 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1565,21 +1565,24 @@ support for automatic differentiation.")
(define-public python-ripser
(package
(name "python-ripser")
- (version "0.6.4")
+ (version "0.6.14")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "ripser" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/scikit-tda/ripser.py")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1575nwsn6b29z7w1mjk23ri83bxq2b4ld979hpgm174642a3x6vs"))))
+ (base32
+ "00na7dpvpc5vwjwgh9ndqrqlswgrzgqf1s7rxfv1vy5wn63fz3m7"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-numpy python-persim python-scikit-learn
python-scipy))
(native-inputs
(list python-cython
python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://ripser.scikit-tda.org")
(synopsis "Persistent homology library for Python")
(description