guix_mirror_bot pushed a commit to branch astro-updates
in repository guix.

commit 4c0642b1650e8bc532c3abb283b341f79e8ea9eb
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Oct 15 09:45:13 2025 +0100

    gnu: python-stdatamodels: Update to 4.1.0.
    
    * gnu/packages/astronomy.scm (python-stdatamodels): Update to 4.1.0.
    [arguments] <test-flags>: Limit the number of threads up to 8.
    [propagated-inputs]: Add python-asdf-transform-schemas.
    [native-inputs]: Remove python-wheel.
    [synopses]: Clarify it by mentioning the framework ecosystem.
    
    Change-Id: Ib7a46f2a6e1120da33678f4f6b2953fec01f49fa
---
 gnu/packages/astronomy.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 75d4fd21bc..5bae4d35a1 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -8500,19 +8500,19 @@ and CAS statistics), as well as fitting 2D Sérsic 
profiles.")
 (define-public python-stdatamodels
   (package
     (name "python-stdatamodels")
-    (version "4.0.1")
+    (version "4.1.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "stdatamodels" version))
        (sha256
-        (base32 "1lyxwfq55ngnsjr25bj3v6mjibx17074z28qi3xc9wpib5dn887i"))))
+        (base32 "1gwa7gh2hyv3770sv514w51c5s7c8zwjr3scx2b240z4c9pbgmq0"))))
     (build-system pyproject-build-system)
     (arguments
      (list
       ;; 1571 passed
       #:test-flags
-      #~(list "--numprocesses" (number->string (parallel-job-count))
+      #~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))
               ;; Disable tests requiring access to CRDS servers to download
               ;; ~500MiB of data.
               "-k" "not test_crds_selectors_vs_datamodel and not test_report")
@@ -8531,16 +8531,15 @@ and CAS statistics), as well as fitting 2D Sérsic 
profiles.")
            python-pytest-xdist
            python-scipy
            python-setuptools
-           python-setuptools-scm
-           python-wheel))
+           python-setuptools-scm))
     (propagated-inputs
      (list python-asdf-4
+           python-asdf-transform-schemas
            python-asdf-astropy
            python-astropy
            python-numpy))
     (home-page "https://github.com/spacetelescope/stdatamodels";)
-    (synopsis
-     "Core support for DataModel classes used in calibration pipelines")
+    (synopsis "STScI DataModel classes used in calibration pipelines")
     (description
      "Provides @code{DataModel}, which is the base class for data models
 implemented in the @acronym{JWST, James Webb Space Telescope} and

Reply via email to