From 1f218230cd4cd3137a058862516f1dfd83df6dfc Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 15 Nov 2025 14:51:15 +0000 Subject: [PATCH] gnu: python-roman-datamodels: Update to 0.28.1. * gnu/packages/astronomy.scm (python-roman-datamodels): Update to 0.28.1. [arguments] : Limit parallel tests up to 8 threads. [native-inputs]: Remove python-pytest-env. Change-Id: I982d8347305e858ce7075adb12060694a4e34f84 --- gnu/packages/astronomy.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 3a23e47eeca..43628f15a5b 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -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))