summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-21 13:29:55 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 20:04:51 +0100
commit8e9167fa4bedc5e4c0114644f1a8c7b351c3c97a (patch)
treeeda0cf44d032e3dd9d956790199e02b3d8618132
parent518321f2d8cda36bb1231c261785a66a30c41b31 (diff)
gnu: python-virgodc: Update to 1.0.5.
* gnu/packages/astronomy.scm (python-virgodc): Update to 1.0.5. [arguments] <#:test-flags>: Drop all, h5py has been built with MPI support in guix/guix!7946. [native-inputs]: Add python-setuptools-scm. Relates-to: guix/guix!10702
-rw-r--r--gnu/packages/astronomy.scm24
1 files changed, 4 insertions, 20 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 94740d4f7e8..ae31bb0dbab 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -13059,7 +13059,7 @@ includes tools to help create both publication-ready and quick figures.")
13059(define-public python-virgodc 13059(define-public python-virgodc
13060 (package 13060 (package
13061 (name "python-virgodc") 13061 (name "python-virgodc")
13062 (version "1.0.4") 13062 (version "1.0.5")
13063 (source 13063 (source
13064 (origin 13064 (origin
13065 (method git-fetch) 13065 (method git-fetch)
@@ -13068,27 +13068,10 @@ includes tools to help create both publication-ready and quick figures.")
13068 (commit (string-append "v" version)))) 13068 (commit (string-append "v" version))))
13069 (file-name (git-file-name name version)) 13069 (file-name (git-file-name name version))
13070 (sha256 13070 (sha256
13071 (base32 "1fzdhdh01gkv57qlkiqh6wrg9brq4340m4n8bxvk8k7igx22hzk4")))) 13071 (base32 "1axhiiafvbld4k6pgid22drhhpxfpjyy0abcczmcggv5m5ghxqc2"))))
13072 (build-system pyproject-build-system) 13072 (build-system pyproject-build-system)
13073 (arguments 13073 (arguments
13074 (list 13074 (list
13075 #:test-flags
13076 #~(list #$@(map (lambda (test) (string-append "--deselect=virgo/mpi/"
13077 "test_parallel_hdf5.py::"
13078 test))
13079 ;; ValueError: h5py was built without MPI support, can't
13080 ;; use mpio driver
13081 ;; See: <https://codeberg.org/guix/guix/issues/7638>.
13082 (list "test_collective_read_1d"
13083 "test_collective_read_2d"
13084 "test_collective_read_empty"
13085 "test_collective_read_small_chunks_1d"
13086 "test_collective_read_small_chunks_2d"
13087 "test_collective_write_1d"
13088 "test_collective_write_2d"
13089 "test_collective_write_empty"
13090 "test_collective_write_small_chunks_1d"
13091 "test_collective_write_small_chunks_2d")))
13092 #:phases 13075 #:phases
13093 #~(modify-phases %standard-phases 13076 #~(modify-phases %standard-phases
13094 (add-after 'unpack 'chdir-python 13077 (add-after 'unpack 'chdir-python
@@ -13096,7 +13079,8 @@ includes tools to help create both publication-ready and quick figures.")
13096 (chdir "python")))))) 13079 (chdir "python"))))))
13097 (native-inputs 13080 (native-inputs
13098 (list python-pytest 13081 (list python-pytest
13099 python-setuptools)) 13082 python-setuptools
13083 python-setuptools-scm))
13100 (propagated-inputs 13084 (propagated-inputs
13101 (list python-h5py 13085 (list python-h5py
13102 python-mpi4py 13086 python-mpi4py