guix_mirror_bot pushed a commit to branch astro-update
in repository guix.
commit 883c3334166ceb90076564d30a182d44c7e79f26
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 15 10:46:57 2026 +0000
gnu: python-cdflib: Update to 1.3.8.
* gnu/packages/astronomy.scm (python-cdflib): Update to 1.3.8.
[arguments] <test-flags>: Deselect "remote_data" marker.
[native-inputs]: Remove python-pytest-remotedata.
Change-Id: I135588d6cdb2db4858a8f4ceca77882b074e8b9b
---
gnu/packages/astronomy.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 16420ae30e..bf4164555f 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -3707,7 +3707,7 @@ bad pixel tracking throughout the reduction process.")
(define-public python-cdflib
(package
(name "python-cdflib")
- (version "1.3.7")
+ (version "1.3.8")
(source
(origin
(method git-fetch)
@@ -3716,11 +3716,13 @@ bad pixel tracking throughout the reduction process.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1ky54sg21g9mcgg8cimkb5bpmz4kl3yfgd1gk99s687lj1qm9v31"))))
+ (base32 "13hh8mc6qcxyiz3wli9v91irllh7bmjsh05d5p4cy9wsbzv62728"))))
(build-system pyproject-build-system)
(arguments
(list
- ;; tests: 71 passed, 26 skipped, 7 warnings
+ ;; tests: 71 passed, 1 skipped, 25 deselected, 17 warnings
+ #:test-flags
+ #~(list "-m" "not remote_data")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'fix-pytest-config
@@ -3736,7 +3738,6 @@ bad pixel tracking throughout the reduction process.")
(native-inputs
(list python-astropy-minimal
python-pytest
- python-pytest-remotedata
python-setuptools
python-setuptools-scm
python-xarray))