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

commit c9727500dec10c6424cfbd15ea5b40ed8ef42c12
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jan 14 11:03:26 2026 +0000

    gnu: python-aiapy: Update to 0.11.0.
    
    * gnu/packages/astronomy.scm (python-aiapy): Update to 0.11.0.
    [arguments] <test-flags>: Run in a single thread, there are not too many
    tests; skip one test requiring remote data.
    <phases>: Preserve 'sanity-check.
    [native-inputs]: Remove python-pytest-cov and python-pytest-xdist; add
    python-hissw.
    
    Change-Id: I25a5983a7f7f55c4a685c27b6dae25858e4b92c6
---
 gnu/packages/astronomy.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index c9279524f0..377fc53b68 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -2046,22 +2046,25 @@ model-fitting photometry or morphological analyses.")
 (define-public python-aiapy
   (package
     (name "python-aiapy")
-    (version "0.10.2")
+    (version "0.11.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "aiapy" version))
        (sha256
-        (base32 "0lr8v2bakqxqn516fr45905lcql72kac3q6rdzn24rn95f812n27"))))
+        (base32 "11hjqk8840y7dwny0r8apqf0a0kb0lyn7kr1syzqhp87zjslna5q"))))
     (build-system pyproject-build-system)
     (arguments
      (list
+      ;; tests: 47 passed, 76 skipped
       #:test-flags
-      #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))))
+      ;; Remove data is required: ValueError: Did not find any files
+      ;; at https:/github.com/sunpy/data/blob/main/aiapy/aia_lev1_\
+      ;; 193a_2013_03_15t12_01_06_84z_image_lev1.fits?raw=true
+      #~(list (string-append "--deselect=aiapy/calibrate/tests/test_meta.py"
+                             "::test_fix_pointing_missing_value"))
       #:phases
       #~(modify-phases %standard-phases
-          ;; It fails to check SunPy's optional inputs versions.
-          (delete 'sanity-check)
           (add-before 'check 'set-home
             (lambda _
               ;; E PermissionError: [Errno 13] Permission denied:
@@ -2069,11 +2072,10 @@ model-fitting photometry or morphological analyses.")
               (setenv "HOME" "/tmp"))))))
     (native-inputs
      (list nss-certs-for-test
+           python-hissw
            python-pytest
            python-pytest-astropy
-           python-pytest-cov
            python-pytest-doctestplus
-           python-pytest-xdist
            python-setuptools
            python-setuptools-scm))
     (propagated-inputs

Reply via email to