1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-14 09:00:39 +02:00

gnu: python-roman-datamodels: Update to 0.28.1.

* gnu/packages/astronomy.scm (python-roman-datamodels): Update to 0.28.1.
[arguments] <test-flags>: Limit parallel tests up to 8 threads.
[native-inputs]: Remove python-pytest-env.

Change-Id: I982d8347305e858ce7075adb12060694a4e34f84
This commit is contained in:
Sharlatan Hellseher
2025-11-15 14:51:15 +00:00
parent 986421642b
commit 1f218230cd

View File

@@ -7698,19 +7698,19 @@ changing the pixel resolution, orientation, coordinate system.")
(define-public python-roman-datamodels
(package
(name "python-roman-datamodels")
(version "0.28.0")
(version "0.28.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "roman_datamodels" version))
(sha256
(base32 "0wfd3ggi23dd98qj3ks7fxr4dc01h2yrb082b51fdfasaaf29ws1"))))
(base32 "0j5y6d4zz1zyfwp05iwlvn0708hsh7phvp2j3zpi9pczljp78aw0"))))
(build-system pyproject-build-system)
(arguments
(list
;; tests: 4618 passed, 1 skipped, 11 xfailed
#:test-flags
#~(list "--numprocesses" (number->string (parallel-job-count)))
#~(list "--numprocesses" (number->string (min 8 (parallel-job-count))))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'set-env
@@ -7720,7 +7720,6 @@ changing the pixel resolution, orientation, coordinate system.")
(list python-pandas
python-pytest
python-pytest-doctestplus
python-pytest-env
python-pytest-xdist
python-setuptools
python-setuptools-scm))