summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-11-11 23:17:32 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-30 23:49:03 +0000
commit6ac13977967f783fedbec2cabb6133beaca1f8d8 (patch)
treec72842ab5dd2bafb6688fe9068157530bb98af61 /gnu/packages/python-science.scm
parent090b085de1ad98da1091c798bf51c0c1db5291a2 (diff)
gnu: python-unyt: Update to 3.0.4.
* gnu/packages/python-science.scm (python-unyt): Update to 3.0.4. [arguments]: Drop all. [propagated-inputs]: Remove python-h5py and python-matplotlib; add python-packaging. [native-inputs]: Remove python-pint and python-wheel. Change-Id: I3759ce1befbb804d1c2508df042c19082f9a7833
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm22
1 files changed, 7 insertions, 15 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index aabf7f3066b..31e79a17155 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -4625,30 +4625,22 @@ docs dependency in support of other libraries.")
(define-public python-unyt
(package
(name "python-unyt")
- (version "3.0.3")
+ (version "3.0.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "unyt" version))
(sha256
- (base32 "0jrq2vhan2h280h6cw1sm5hys2nzmf19w4py64k3nrkc320z9mni"))))
+ (base32 "04qjjv5zga7dh355ygsvkckfqi86nf03w6ckw5zm0120xw9p1shp"))))
(build-system pyproject-build-system)
- (arguments
- ;; This is a Numpy DeprecationWarning, remove it on next update.
- (list #:test-flags ''("-k" "not test_h5_io")))
- ;; Pint is optional, but we do not propagate it due to its size.
+ ;; tests: 647 passed, 56 skipped, 2 xfailed
(native-inputs
- (list python-pint
- python-pytest
+ (list python-pytest
python-setuptools
- python-setuptools-scm
- python-wheel))
- ;; Astropy is an optional import, but we do not include it as it creates a
- ;; module cycle: astronomy->python-science->astronomy.
+ python-setuptools-scm))
(propagated-inputs
- (list python-h5py ; optional import
- python-matplotlib ; optional import
- python-numpy
+ (list python-numpy
+ python-packaging
python-sympy))
(home-page "https://unyt.readthedocs.io")
(synopsis "Library for working with data that has physical units")