summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2026-03-29 08:51:31 -0300
committerVinicius Monego <monego@posteo.net>2026-03-29 11:18:33 -0300
commitee567ba7b94e44c8150e9344ac0328d341f51804 (patch)
treea006f63d6f225cef93f8c87d04b9c20c2f13d4a3 /gnu/packages/python-science.scm
parent109e9d4a2f99848d7d9852e1ec25c98d5b938512 (diff)
gnu: python-sparse: Update to 0.18.0.
* gnu/packages/python-science.scm (python-sparse): Update to 0.18.0. [native-inputs]: Remove python-wheel. Change-Id: I524ff3eef96f73c6dc12efb3b60288d122dc4d8b
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index c25be19ac8f..b63b4bb7c4a 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -3686,24 +3686,23 @@ SLURM jobs (meant for internal use by python-snakemake-executor-plugin-slurm).")
(define-public python-sparse
(package
(name "python-sparse")
- (version "0.15.5")
+ (version "0.18.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "sparse" version))
(sha256
(base32
- "0rp29gp82qwwkq210pzh2qmlqhi2007nb7p7nwqmrkgmjq6cwxjc"))))
+ "1x5zkgbsgmpr6nis0k2y5vrsg7l61ly2zishnijcgh0fxdhjdyap"))))
(build-system pyproject-build-system)
(propagated-inputs
(list python-numba python-numpy python-scipy))
(native-inputs
(list python-dask
python-pytest
- python-pytest-cov
+ python-pytest-cov ; runs by default
python-setuptools
- python-setuptools-scm
- python-wheel))
+ python-setuptools-scm))
(home-page "https://github.com/pydata/sparse/")
(synopsis "Library for multi-dimensional sparse arrays")
(description