~ruther/guix-local

1f218230cd4cd3137a058862516f1dfd83df6dfc — Sharlatan Hellseher 6 months ago 9864216
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
1 files changed, 3 insertions(+), 4 deletions(-)

M gnu/packages/astronomy.scm
M gnu/packages/astronomy.scm => gnu/packages/astronomy.scm +3 -4
@@ 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))