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

commit f38be04a380ab7f278d202958e63095ce7803607
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Mar 20 21:20:07 2026 +0000

    gnu: python-holodeck: Limit parallel tests to 8 threads.
    
    * gnu/packages/astronomy.scm (python-holodeck)[arguments] <test-flags>:
    Limit parallel tests up to 8 threads.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: Ie7930093870206f154d600a598a05ab2d70c8ef6
---
 gnu/packages/astronomy.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 9293561962..a1f6c64595 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5860,10 +5860,10 @@ scipy.io}.")
     (version "1.5.2")
     (source
      (origin
-       (method git-fetch) ; no tests in the PyPI tarball
+       (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/nanograv/holodeck";)
-             (commit (string-append "v" version))))
+              (url "https://github.com/nanograv/holodeck";)
+              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "0jz54fb6yyling2a756qqahixpn1wgxmhhqmv6pf0iqds019v9k7"))))
@@ -5871,13 +5871,12 @@ scipy.io}.")
     (arguments
      (list
       #:test-flags
-      #~(list "--numprocesses" (number->string (parallel-job-count)))))
+      #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))))))
     (native-inputs
      (list python-cython-0
            python-pytest
            python-pytest-xdist
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (propagated-inputs
      (list python-astropy
            python-cosmopy

Reply via email to