guix_mirror_bot pushed a commit to branch astro-updates in repository guix.
commit d3d402c59288ae01384050a4c4be2cf0934a37b6 Author: Sharlatan Hellseher <[email protected]> AuthorDate: Tue Jul 22 09:49:44 2025 +0100 gnu: python-specutils: Update to 2.0.0. * gnu/packages/astronomy.scm (python-specutils): Update to 2.0.0. [arguments] <phases>: Add 'relax-requirements. Change-Id: Ice139b4513535d8b5abb156a9ade76d6bcf0818c --- gnu/packages/astronomy.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 093d0b972d..d60238c5ea 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -6296,13 +6296,13 @@ of axis order, spatial projections, and spectral units that exist in the wild. (define-public python-specutils (package (name "python-specutils") - (version "1.19.0") + (version "2.0.0") (source (origin (method url-fetch) (uri (pypi-uri "specutils" version)) (sha256 - (base32 "1iwkrs436z8xrzwl5rkla8nimyfrx5ydklghm41xgzr27nkvqa12")))) + (base32 "0ngq4r7awkbwdbi7a8isj6iw66xk3s26yjp0c0qvl6wvf9hby59r")))) (build-system pyproject-build-system) (arguments (list @@ -6320,6 +6320,12 @@ of axis order, spatial projections, and spectral units that exist in the wild. " and not ")) #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'relax-requirements + (lambda _ + (substitute* "setup.cfg" + ;; scipy>=1.14.1; all tests passed, it will remove after + ;; python-team is merged. + ((">=1.14") ">=1.12.0")))) (add-before 'check 'set-home-env (lambda _ ;; Tests require HOME to be set.
