guix_mirror_bot pushed a commit to branch astro-update
in repository guix.
commit dee16a900101ff154068a0fa9765cc7cc870290b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 16 09:04:33 2026 +0100
gnu: python-glue-core: Update to 1.27.0.
* gnu/packages/astronomy.scm (python-glue-core): Update to 1.27.0.
[source]: Switch to git-fetch.
---
gnu/packages/astronomy.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index c8ecab58b2..49aa8ecb36 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6043,17 +6043,20 @@ astronomy-specific functionality")
(define-public python-glue-core
(package
(name "python-glue-core")
- (version "1.26.0")
+ (version "1.27.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "glue_core" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/glue-viz/glue")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1n5bq0p9w1v2cwjbaz68dnrq93r0hrcangif0y5xdfxmx8a0kqvz"))))
+ (base32 "1a0ycvnnm610jj75f07bi10f4riahvdzi1l59w32s5zzqxnhpqpn"))))
(build-system pyproject-build-system)
(arguments
- ;; tests: 1642 passed, 1 deselected, 6 xfailed, 1 xpassed, 37 warnings
(list
+ ;; tests: 1661 passed, 1 deselected, 6 xfailed, 1 xpassed, 35 warnings
#:test-flags
;; XXX: This test is flaky, it can fail if the CI system is slow.
#~(list "-k" "not test_combine_slices_hypot")))