summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-06 15:24:50 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:21:53 +0100
commit5295c9c379c408bdb4cb58c0a3dd03eaeb42e497 (patch)
tree47c06b825f040ef8ed4792e1710808b32e3774f4 /gnu
parent8b10e6a14b2af06c6e4d4ba0ba91d1eb8d12f252 (diff)
gnu: python-liana-py: Update to 1.6.1.
* gnu/packages/bioinformatics.scm (python-liana-py): Update to 1.6.1. [arguments] <test-flags>: Skip 2 more tests. Change-Id: Ic73e742be564798cc349b91966beeeb6561a72fa Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm12
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 69bf7c3dc92..9517a8de2e6 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3049,19 +3049,20 @@ servers supporting the protocol.")
(define-public python-liana-py
(package
(name "python-liana-py")
- (version "1.6.0")
+ (version "1.6.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/saezlab/liana-py")
- (commit (string-append "v" version))))
+ (commit version)))
(file-name (git-file-name name version))
(sha256
(base32
- "1k6l371wd00m95l5pb2jsmzzxh5nc5v21fg2v0cslr9761q151r9"))))
+ "0cd4gdb55xhn3brqd69zbj1ddz1kipj4hihzzri9nmv8flffw96d"))))
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 75 passed, 24 deselected, 577 warnings
#:test-flags
'(list "-k"
;; These tests require internet access.
@@ -3074,6 +3075,11 @@ servers supporting the protocol.")
" and not test_translate_resource"
;; Minor accuracy difference
" and not test_bivar_morans_perms"
+ ;; Items are not equal:
+ ;; ACTUAL: np.float64(1802.3329624189018)
+ ;; DESIRED: 1802.332962418902
+ " and not test_mdata_transformations"
+ " and not test_get_spatial_connectivities"
;; XXX "local_scores" array has wrong type.
;; See https://github.com/saezlab/liana-py/issues/147
" and not test_morans_analytical"