guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2eaaad6402a580c79adf2fb819d7ead054986416
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 29 23:13:15 2026 +0000
gnu: python-pysm3: Use python-numpy-1 and python-healpy-1.18.
* gnu/packages/astronomy.scm (python-pysm3):
[phases]{relax-requirements}: Do not force NumPy v2.
[propagated-inputs]: Remove python-healpy and python-numpy; add
python-healpy-1.18 and python-numpy-1.
Change-Id: Id700f9178d77344cb2baaf422be539f0f4d17768
---
gnu/packages/astronomy.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 287c05f8b3..600db42ee3 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -8179,8 +8179,7 @@ natively in Siril.")
(add-after 'unpack 'relax-requirements
(lambda _
(substitute* "pyproject.toml"
- (("scipy < 1.15") "scipy")
- (("numpy < 2") "numpy")))) ; no constain on master branch
+ (("scipy < 1.15") "scipy"))))
(add-before 'build 'set-version
(lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version))))))
@@ -8199,9 +8198,9 @@ natively in Siril.")
(propagated-inputs
(list python-astropy
python-h5py
- python-healpy
+ python-healpy-1.18
python-numba
- python-numpy
+ python-numpy-1
python-scipy
python-toml))
(home-page "https://pysm3.readthedocs.io/")