guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 2e8051cf57957135f0baf064eee294d076d81982
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Aug 11 22:29:29 2026 +0100

    gnu: ginga: Update to 7.3.0.
    
    * gnu/packages/astronomy.scm (ginga): Update to 7.3.0.
    [phases]{relax-requirements}: New phase.
    
    Relates-to: guix/guix!10702
---
 gnu/packages/astronomy.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index f4be19a24d..4e22868404 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1105,7 +1105,7 @@ for \"genetic modifications\" as described by e.g.
 (define-public ginga
   (package
     (name "ginga")
-    (version "7.0.0")
+    (version "7.3.0")
     (source
      (origin
        (method git-fetch)
@@ -1114,18 +1114,20 @@ for \"genetic modifications\" as described by e.g.
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0jpp6vnbs8xby9hrz3k07rpgj1g29m2fsmi100371m8fvmnv4d7c"))))
+        (base32 "1q4qdc4s2p9i6lzyvxcr3bfyclxsr0xg7dkmnz4ilgy561zxy87w"))))
     (build-system pyproject-build-system)
     (arguments
      (list
-      ;; tests: 256 passed, 13 skipped
       #:phases
       #~(modify-phases %standard-phases
+         (add-after 'unpack 'relax-requirements
+           (lambda _
+             (substitute* "setup.cfg"
+               ;; All tests passed with older Pillow, remove when it's
+               ;; updated.
+               (("pillow>=12.3.0") "pillow"))))
           (add-before 'sanity-check 'set-home
             (lambda _
-              ;; Relax matplotlib warning: ... because the default path
-              ;; (/homeless-shelter/.config/matplotlib) is not a writable
-              ;; directory ...
               (setenv "HOME" "/tmp"))))))
     (native-inputs
      (list python-attrs

Reply via email to