GNU bug report logs -
#76480
[PATCH 00/51] Astro update 2025/02
Previous Next
Full log
View this message in rfc822 format
* gnu/packages/astronomy.scm (python-stcal): Update to 1.11.1. Fix build.
[argumens] <test-flags>: Run tests in parallel.
<phases>: Remove 'silent-check-for-opencv, add 'relax-requirements.
[native-inputs]: Add python-pytest-xdist.
Change-Id: I175d4fc3e52efdcad4eac0d8e05f7637245f8e92
---
gnu/packages/astronomy.scm | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 683e9b90bc4..928fe882c0c 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5740,18 +5740,19 @@ (define-public python-stsci-stimage
(define-public python-stcal
(package
(name "python-stcal")
- (version "1.10.0")
+ (version "1.11.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "stcal" version))
(sha256
- (base32 "1h0vkc3nd77qm2ph1nihpd1n7dzr3d4rw2wga6j7siqjiwmphj3g"))))
+ (base32 "0xafli4b3wyimpaxmvb0h5bha5g5kg76s4hykk63wkxrjrd2m2vf"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
- #~(list "-k" (string-join
+ #~(list "--numprocesses" (number->string (parallel-job-count))
+ "-k" (string-join
;; Tests requiring network access.
(list "not test_absolute_align"
"test_relative_align[True]"
@@ -5770,11 +5771,16 @@ (define-public python-stcal
;; contain the variable: error: ‘NPY_NTYPES_LEGACY’ undeclared
;; (first use in this function)
((".*NPY_NTYPES_LEGACY.*") ""))))
- (add-before 'build 'silent-check-for-opencv
+ (add-before 'build 'relax-requirements
(lambda _
- ;; XXX: Can't detect opencv-python version. The input opencv
- ;; might not set the version correctly.
(substitute* "pyproject.toml"
+ ;; Relax some requirements as all tests passed successfully.
+ ;; numpy>=1.25.0
+ (("1.25.0") "1.24.4")
+ ;; scipy>=1.14.1
+ (("1.14.1") "1.12.0")
+ ;; XXX: Can't detect opencv-python version. The input opencv
+ ;; might not set the version correctly.
((".*opencv-python-headless.*") ""))))
(add-before 'check 'build-extensions
(lambda _
@@ -5784,6 +5790,7 @@ (define-public python-stcal
(list python-cython-3
python-psutil
python-pytest
+ python-pytest-xdist
python-pytest-doctestplus
python-setuptools
python-setuptools-scm
--
2.47.1
This bug report was last modified 83 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.