summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-05-04 10:42:36 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-04 10:42:48 +0100
commit668fcb2418b1aa11930ffdc408628b3836950cbf (patch)
treec488c1caa317be1f2b8aa3da390cab705b9a8836 /gnu
parent4c1c67e888c40bb5b7ec0c6c3e4ab013b0e00e5e (diff)
gnu: python-muon: Update to 0.1.7.
* gnu/packages/bioinformatics.scm (python-muon): Update to 0.1.7. [arguments] <test-flags>: Skip 2 failing tests. Change-Id: I178efe9e54246130f6b467f0245495b820a6a303
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm16
1 files changed, 11 insertions, 5 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 0d27d1e2328..50acf1e73c0 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5670,7 +5670,7 @@ subgroups.")
(define-public python-muon
(package
(name "python-muon")
- (version "0.1.6")
+ (version "0.1.7")
(source
(origin
;; The tarball from PyPi doesn't include tests.
@@ -5681,14 +5681,20 @@ subgroups.")
(file-name (git-file-name name version))
(sha256
(base32
- "1kd3flgy41dc0sc71wfnirh8vk1psxgyjxkbx1zx9yskkh6anbgw"))))
+ "0lahc3r0sqqkifibjm090dpkwila3jfh967hldw2nm8wgj81ak82"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
- ;; Even providing a random seed, scipy.sparse.rand produces inconsistent
- ;; results across scipy versions.
- '(list "-k" "not test_tfidf")
+ '(list "-k" (string-join
+ ;; Even providing a random seed, scipy.sparse.rand produces
+ ;; inconsistent results across scipy versions.
+ (list"not test_tfidf"
+ ;; Tests fails with error: FileNotFoundError: [Errno
+ ;; 2] No such file or directory.
+ "test_filter_obs_with_obsm_obsp"
+ "test_filter_var_with_varm_varp")
+ " and not "))
#:phases
'(modify-phases %standard-phases
;; Numba needs a writable dir to cache functions.