guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 204696ed0ab4c181d3a16831329fb0b8605bc4e7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jan 6 15:24:50 2026 +0000
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
---
gnu/packages/bioinformatics.scm | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b31f285261..1d59b132c1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -3048,19 +3048,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.
@@ -3073,6 +3074,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"