guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit a3374a038797ccf9cdb43e0e80729c941df7eaaf
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jan 4 01:19:41 2026 +0000
gnu: python-glue-qt: Relax requirements for ipython version.
* gnu/packages/astronomy.scm (python-glue-qt):
[phases]{relax-requirements}: New phase.
Change-Id: I25ede5ae073ff7e5d568e99b29b15a95008a696f
---
gnu/packages/astronomy.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 207605e343..9b4c2db1e2 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5200,6 +5200,11 @@ across many files.")
;; tests: 618 passed, 4 skipped, 2 xfailed, 436 warnings
#:phases
#~(modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "pyproject.toml"
+ ;; ipython>=4.0,<9.0
+ ((">=4.0,<9\\.0") ">=4.0"))))
(add-before 'build 'set-env-version
(lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))