diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-16 23:28:54 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-31 21:04:09 +0100 |
commit | f791ecaf43abe324bd33f3771ae2522713f6f6d2 (patch) | |
tree | e917ba71070f38ebf66c0906c4bf238c3dc3c829 | |
parent | 9addcf3cea97a7f54813d0dc1b0495d104f29c5e (diff) |
gnu: python-ducc0: Update to 0.37.1.
* gnu/packages/maths.scm (python-ducc0): Update to 0.37.1.
[arguments] <test-flags>: Run tests in parallel, supported by upstream.
[native-inputs]: Remove python-wheel; add cmake-minimal,
python-nanobind, python-pytest-xdist, and python-scikit-build-core.
Change-Id: Iedc5f5ce49c50f8b72a120f592982baad06be89f
-rw-r--r-- | gnu/packages/maths.scm | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index db05379749..6910b32dae 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4168,7 +4168,7 @@ programming language.") (define-public python-ducc0 (package (name "python-ducc0") - (version "0.36.0") + (version "0.37.1") (source (origin (method git-fetch) @@ -4178,21 +4178,26 @@ programming language.") "ducc0_" (string-replace-substring version "." "_"))))) (file-name (git-file-name name version)) (sha256 - (base32 "1pfj7k5s3d237r7diqrd7cgvf8p5zms6pp64nfdildx49kwggwab")))) + (base32 "0pckbip2ffmiwm73wrpvif3gy0a09v9b9kbyallp520l6l69n4k8")))) (build-system pyproject-build-system) (arguments (list - #:test-flags #~(list "python/test") + #:test-flags + #~(list "--numprocesses" (number->string (parallel-job-count)) + "python/test") #:phases #~(modify-phases %standard-phases (add-before 'build 'set-env (lambda _ (setenv "DUCC0_OPTIMIZATION" "portable-strip")))))) (native-inputs - (list pybind11 + (list cmake-minimal + pybind11 + python-nanobind python-pytest - python-setuptools - python-wheel)) + python-pytest-xdist + python-scikit-build-core + python-setuptools)) (propagated-inputs (list python-numpy)) (home-page "https://gitlab.mpcdf.mpg.de/mtr/ducc") |