1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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
This commit is contained in:
Cayetano Santos
2026-03-23 14:28:53 +01:00
parent 3ef5753dbf
commit 90c72fb47e

View File

@@ -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