guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c07d4fd083a75e152dc51e63542f547ccc5054ad
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Oct 14 14:33:00 2025 +0100
gnu: python-astroalign: Update to 2.6.2.
* gnu/packages/astronomy.scm (python-astroalign): Update to 2.6.2.
[propagated-inputs]: Remove python-bottleneck and python-sep-pjw; add
python-sep.
[native-inputs]: Remove python-astropy; add python-astropy-minimal.
Change-Id: I62d5b121a4800b63a33d8c028c2ad32427c914e3
---
gnu/packages/astronomy.scm | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 3b5a4a7ff4..d4389955c7 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -2530,30 +2530,28 @@ elevation, solar azimuth, rahukaalam, and the phases of
the moon.")
(define-public python-astroalign
(package
(name "python-astroalign")
- (version "2.6.1")
+ (version "2.6.2")
(source
(origin
- ;; There are no tests in the PyPI tarball.
(method git-fetch)
(uri (git-reference
(url "https://github.com/quatrope/astroalign")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1r65n0jx3gvr43c8svswcpvjdjwz85xcvxrrxmvxzv0w2bd6xcc9"))))
+ (base32 "0jcnv0gll0p7aqykmn9qffyzfq4gm3py5g20v6xxwf91vr85xrl3"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-astropy
+ (list python-astropy-minimal
python-ccdproc
python-pillow
python-pytest
python-setuptools))
(propagated-inputs
- (list python-bottleneck
- python-numpy
+ (list python-numpy
python-scikit-image
python-scipy
- python-sep-pjw))
+ python-sep))
(home-page "https://astroalign.readthedocs.io/")
(synopsis "Astrometric Alignment of Images")
(description