diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-05-10 23:02:19 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:37:05 +0100 |
| commit | 2da1c03e78f1da4eb7c3e7a4d317f21162f2da69 (patch) | |
| tree | 9f4ec536d60f4b1409c77413378f9ebbfbfc118b /gnu | |
| parent | 8d6d7138944e5afb0819957862a171cdeaf4eeaa (diff) | |
gnu: python-arboreto: Fix tests with Python@3.12.
* gnu/packages/bioinformatics.scm (python-arboreto)
[arguments]<#:phases>: Add phase 'python-3.12-compatibility.
Change-Id: I2f766ea064a9a5dc38543318dd5107d35a0db240
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 6a35c10943..625323a252 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -21909,6 +21909,10 @@ pycisTarget and SCENIC.") #:test-backend #~'unittest #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'python-3.12-compatibility + (lambda _ + (substitute* (find-files "tests" "\\.py") + (("assertEquals") "assertEqual")))) (add-after 'unpack 'disable-failing-tests (lambda _ (substitute* "tests/test_algo.py" |
