From 8b10e6a14b2af06c6e4d4ba0ba91d1eb8d12f252 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 6 Jan 2026 15:24:49 +0000 Subject: [PATCH] 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 --- 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 05a0a443bc2be3377423e15738253e97e69d758c..69bf7c3dc929c295a1a0b8c41ad1aa3f5d2498b0 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: . + ;; 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")))