diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-21 10:24:12 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-30 20:12:40 +0100 |
commit | 65f7c5d32327394b847f970897278ffe0b878427 (patch) | |
tree | 4956ca8977629221c8041beeddf35db4a34271ce | |
parent | db77df45ffe1831c126bee0d20472e54aac3e4b7 (diff) | |
download | guix-65f7c5d32327394b847f970897278ffe0b878427.tar.gz guix-65f7c5d32327394b847f970897278ffe0b878427.zip |
gnu: python-stcal: Update to 1.12.0.
* gnu/packages/astronomy.scm (python-stcal): Update to 1.12.0.
[arguments] <test-flags>: Skip one more test, sort alphabetically.
Change-Id: I3cfd4a2a523fc526a4b209cbf60461612f2f3bec
-rw-r--r-- | gnu/packages/astronomy.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index eb24e39667..4ea0882c96 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5741,13 +5741,13 @@ task}.") (define-public python-stcal (package (name "python-stcal") - (version "1.11.1") + (version "1.12.0") (source (origin (method url-fetch) (uri (pypi-uri "stcal" version)) (sha256 - (base32 "0xafli4b3wyimpaxmvb0h5bha5g5kg76s4hykk63wkxrjrd2m2vf")))) + (base32 "1wb1rvr0p00jhhpn2szqi9dn8vzmb8v12yb96h8x24mj08p5clwk")))) (build-system pyproject-build-system) (arguments (list @@ -5756,12 +5756,13 @@ task}.") "-k" (string-join ;; Tests requiring network access. (list "not test_absolute_align" - "test_relative_align[True]" - "test_relative_align[False]" - "test_get_catalog" "test_create_catalog" "test_create_catalog_graceful_failure" - "test_parse_refcat") + "test_get_catalog" + "test_parse_refcat" + "test_parse_sky_centroid" + "test_relative_align[False]" + "test_relative_align[True]") " and not ")) #:phases #~(modify-phases %standard-phases |