guix_mirror_bot pushed a commit to branch astro-update
in repository guix.
commit 2a8e8dabc50968c7339bd11541f95635d081ee70
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Feb 17 12:26:43 2026 +0000
gnu: python-asdf-astropy: Update to 0.10.0.
* gnu/packages/astronomy.scm (python-asdf-astropy): Update to 0.10.0.
[arguments] <test-flags>: Run all tests. Pin the threads cound to 8.
Change-Id: I6fbace2a8a5fac779c2594adeda767a640268db8
---
gnu/packages/astronomy.scm | 20 ++++----------------
1 file changed, 4 insertions(+), 16 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 6836f3f762..fbf6bb9166 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -2205,31 +2205,19 @@ implementation of the ASDF Standard.")
(define-public python-asdf-astropy
(package
(name "python-asdf-astropy")
- (version "0.9.0")
+ (version "0.10.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "asdf_astropy" version))
(sha256
- (base32 "0hsm9brcq92x0mhayc067skzxm0gvkl9m04af98fac3jhn08favv"))))
+ (base32 "0kkz771h6i05ldy3ddq3gvgyiwbv268zhjxckrkmzahjn187qz6j"))))
(build-system pyproject-build-system)
(arguments
(list
- ;; tests: 4419 passed, 1 skipped
+ ;; tests: 4435 passed, 1 skipped
#:test-flags
- #~(list "--numprocesses" (number->string (parallel-job-count))
- "-k" (string-join
- ;; AttributeError: 'AsdfFile' object has no attribute
- ;; '_open_impl'
- (list "not test_legacy_icrs_deseialize"
- "test_read_examples[example0]"
- "test_read_examples[example1]"
- "test_read_examples[example2]"
- "test_read_examples[example3]"
- "test_read_examples[example4]"
- "test_read_examples[example5]"
- "test_read_examples[example6]")
- " and not "))
+ #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))))
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'set-home-env