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

commit bc9dd70ab045dea630a7ea00440b6b459f385c6a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Nov 14 14:45:56 2025 +0000

    gnu: python-asdf: Update to 5.1.0.
    
    * gnu/packages/astronomy.scm (python-asdf): Update to 5.1.0.
    [arguments] <test-flags>: Limit parallel tests up to 8 threads.
    
    Change-Id: Ida16db9368e1d200f3b6038cc0cb176a8f80e0ef
---
 gnu/packages/astronomy.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index a0a00d16f9..6cad4d3251 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -2160,18 +2160,19 @@ Main features:
 (define-public python-asdf
   (package
     (name "python-asdf")
-    (version "5.0.0")
+    (version "5.1.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "asdf" version))
        (sha256
-        (base32 "1405fmv0f8dxr949njfw368bkm7w8cnqr5w6nqlxr68vvc1pghx7"))))
+        (base32 "1m0j8lbyhblpj8sjnc6ffb8lplffnj17pwyw8i08kp2rfbaarg10"))))
     (build-system pyproject-build-system)
     (arguments
      (list
+      ;; tests: 1986 passed, 13 skipped, 2 xfailed
       #:test-flags
-      #~(list "--numprocesses" (number->string (parallel-job-count)))))
+      #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))))))
     (native-inputs
      (list python-psutil
            python-pytest

Reply via email to