diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-18 14:16:15 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-30 22:06:31 +0100 |
commit | a8f1f11d5b969f7731ba88a2c0e9ff00bb8646b4 (patch) | |
tree | 1561023e7584c6f82aaf5e807bcde8321ac05f56 /gnu | |
parent | 87de99f5a185082296955776239b9bde91436ba2 (diff) | |
download | guix-a8f1f11d5b969f7731ba88a2c0e9ff00bb8646b4.tar.gz guix-a8f1f11d5b969f7731ba88a2c0e9ff00bb8646b4.zip |
gnu: python-pysiaf: Update to 0.23.3.
* gnu/packages/astronomy.scm (python-pysiaf): Update to 0.23.3.
[propagated-inputs]: Remove python-numpydoc.
[native-inputs]: Add python-setuptools-scm.
Change-Id: Ia20751efc79d391a01b0b50e728646ac38e6b7eb
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index d9f1ee87ed..6e2be8cc22 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5103,18 +5103,18 @@ Features: (define-public python-pysiaf (package (name "python-pysiaf") - (version "0.22.0") + (version "0.23.3") (source (origin (method url-fetch) (uri (pypi-uri "pysiaf" version)) (sha256 - (base32 "08wb98k9k4f04455da5ns9rif8pl9r3ih537w1yj393hkjjiyzfz")))) + (base32 "16qbg5n2bw2wr3i8a040i7z7az3w0pn508y6xggy05viwdli6br8")))) (build-system pyproject-build-system) (arguments (list #:test-flags - #~(list "-n" "auto" + #~(list "--numprocesses" "auto" ;; Disable 2 failing tests, see ;; <https://github.com/spacetelescope/pysiaf/issues/338> "-k" (string-append "not test_write_jwst_siaf_xlsx" @@ -5124,12 +5124,13 @@ Features: python-lxml python-matplotlib python-numpy - python-numpydoc python-openpyxl python-requests python-scipy)) (native-inputs - (list python-pytest python-pytest-xdist)) + (list python-pytest + python-pytest-xdist + python-setuptools-scm)) (home-page "https://pysiaf.readthedocs.io/") (synopsis "Handling SIAF for space telescopes") (description |