aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-04-21 18:58:29 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-04-30 20:12:41 +0100
commiteb5b8fa6fb5ebce5def303179580891f34df5d45 (patch)
tree8f82a127e9185c5ef03aebe50134a3e4f2a2cd4f
parent17dfe43cba551cb8ca990d811e2695190064e167 (diff)
downloadguix-eb5b8fa6fb5ebce5def303179580891f34df5d45.tar.gz
guix-eb5b8fa6fb5ebce5def303179580891f34df5d45.zip
gnu: python-zodipy: Update to 1.1.1.
* gnu/packages/astronomy.scm (python-zodipy): Update to 1.1.1. Change-Id: I9f45aefb24eb8d768f9a70334470516ab1f3b710
-rw-r--r--gnu/packages/astronomy.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 4c42c98376..1f71af4577 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -7676,16 +7676,18 @@ analysis. This package contains functionality for:
(define-public python-zodipy
(package
(name "python-zodipy")
- (version "1.1.0")
+ (version "1.1.1")
(source
(origin
(method git-fetch) ;; no tests in the PyPI tarball
(uri (git-reference
+ ;; XXX: Upstream is not stable with version style
+ ;; <https://github.com/Cosmoglobe/zodipy/issues/48>
(url "https://github.com/Cosmoglobe/zodipy")
- (commit (string-append "v." version))))
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1i7qdbxb9izsaciq4l3fz9irgxbsklxcfd33ap7w1spjk86mgv6x"))))
+ (base32 "0n51bism8irj2afj4xjyx438ylcc8f1dw2x0jy8xg90x7wdh30cm"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -7694,18 +7696,16 @@ analysis. This package contains functionality for:
(add-after 'unpack 'relax-requirements
(lambda _
(substitute* "pyproject.toml"
- ;; numpy = "^1.26.4"
- (("1.26.4") "1.23.2")
;; scipy = "^1.13.0"
(("1.13.0") "1.12.0")))))))
+ (native-inputs
+ (list python-poetry-core
+ python-pytest))
(propagated-inputs
(list python-astropy
python-jplephem
python-numpy
python-scipy))
- (native-inputs
- (list python-poetry-core
- python-pytest))
(home-page "https://github.com/Cosmoglobe/zodipy")
(synopsis "Zodiacal emission simulations")
(description