diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-10 20:46:50 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:22:35 +0100 |
| commit | dcca820951aed7b734b1524db0d7ab9f35db68df (patch) | |
| tree | d398b8fe167d22dd74b95b1b21d37caf26615c9a | |
| parent | 9c424939792c34ff7dd70704ec5ca2dea2e6f2a4 (diff) | |
gnu: scregseg: Skip 'sanity-check phase.
* gnu/packages/bioinformatics.scm (scregseg)
[arguments]<#:phases>: Skip 'sanity-check phase.
[native-inputs]: Add python-pytest.
Change-Id: If28faf66025e79210850080a18b8ce35d9ec6504
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 6793aeacf88..1b96d112e7c 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -24406,9 +24406,13 @@ populations.") (add-after 'unpack 'compatibility (lambda _ (substitute* "src/scregseg/_utils.pyx" - (("np.float") "float"))))))) + (("np.float") "float")))) + ;; XXX: python-notebook and python-jupyter-client versions + ;; are incompatible. + (delete 'sanity-check)))) (native-inputs (list python-cython + python-pytest python-setuptools)) (propagated-inputs (list python-scikit-learn-1.6 |
