summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-04 01:19:41 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:21:20 +0100
commitacf979160cf9e51915c1a1f0d9c8c031ca07bb76 (patch)
tree728a9e2e56f8eda43cfcadd619b4dcae476bad41
parentd47b0599a866b5cf239235bdc102b8e8cd70637f (diff)
gnu: python-glue-qt: Relax requirements for ipython version.
* gnu/packages/astronomy.scm (python-glue-qt): [phases]{relax-requirements}: New phase. Change-Id: I25ede5ae073ff7e5d568e99b29b15a95008a696f Signed-off-by: Rutherther <rutherther@ditigal.xyz>
-rw-r--r--gnu/packages/astronomy.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 207605e343c..9b4c2db1e29 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)))