summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-06 15:24:49 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:21:52 +0100
commit8b10e6a14b2af06c6e4d4ba0ba91d1eb8d12f252 (patch)
tree9082bc2fc59f5e349405d16833c95da5ca0642f8
parent3c140efabb38f927cd68d5c723b8c47367591ed0 (diff)
gnu: python-decoupler: Update to 2.1.2.
* gnu/packages/bioinformatics.scm (python-decoupler): Update to 2.1.2. [phases]{relax-requirements}: New phases. Change-Id: Iaa57b2d4ef96d661a68310c64c6f2e2b8aee520b Signed-off-by: Rutherther <rutherther@ditigal.xyz>
-rw-r--r--gnu/packages/bioinformatics.scm11
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 05a0a443bc2..69bf7c3dc92 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2741,7 +2741,7 @@ parsing of Variant Call Format (VCF) files.")
(define-public python-decoupler
(package
(name "python-decoupler")
- (version "2.1.1")
+ (version "2.1.2")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2750,10 +2750,11 @@ parsing of Variant Call Format (VCF) files.")
(file-name (git-file-name name version))
(sha256
(base32
- "0b15n5sq940sn29jsgmdkkm4fcpzfq1n221scfwhjxb4ybdpsz4v"))))
+ "05d70zrgv8l9ihkgmr7hqcgn66yx1v1lm0hcfbc370asp97k2f74"))))
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 227 passed, 35 deselected, 37 warnings
#:test-flags
'(list "-k" (string-join
;; Tests requiring internet access to reach out
@@ -2783,6 +2784,12 @@ parsing of Variant Call Format (VCF) files.")
" and not "))
#:phases
'(modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "pyproject.toml"
+ ;; See: <https://github.com/statsmodels/statsmodels/issues/9584>.
+ ;; Resolved in statsmodels0.14.5, current in Guix.
+ (("scipy<1.16") "scipy"))))
(add-before 'check 'set-home
;; Some tests require a home directory to be set.
(lambda _ (setenv "HOME" "/tmp")))