guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit d7c8f70c0316a537faf1dc41c6a64d493ad5c62f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jan 6 15:24:49 2026 +0000
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
---
gnu/packages/bioinformatics.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5655218279..b31f285261 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2740,7 +2740,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
@@ -2749,10 +2749,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
@@ -2782,6 +2783,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")))