summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-03-03 17:17:39 +0900
committerMaxim Cournoyer <maxim@guixotic.coop>2026-03-08 09:49:45 +0900
commite819590cdf2a0a3916a0e53cffc2948bac4a8087 (patch)
treea889ff5d07e82c24ce6e298b5292a21cfaec1cc5 /gnu/packages/python-science.scm
parent629266b3c77c349153197c773f89f790cdb01c66 (diff)
gnu: python-scikit-image: Update to 0.26.0.
This fixes a test failure. * gnu/packages/python-science.scm (python-scikit-image): Update to 0.26.0. [#:test-flags]: Remove --pyargs (otherwise no test would run). Add upstream issue reference in comment. [#:phases]: Delete argument. [native-inputs]: Add python-pytest-pretty. Change-Id: I4ecf593faa74174d941f47f8569caa7badada1ee
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm21
1 files changed, 7 insertions, 14 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index aef89267989..2e05513f6b4 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2016-2020, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018, 2022 Leo Famulari <leo@famulari.name>
-;;; Copyright © 2019-2025 Maxim Cournoyer <maxim@guixotic.coop>
+;;; Copyright © 2019-2026 Maxim Cournoyer <maxim@guixotic.coop>
;;; Copyright © 2019 Giacomo Leidi <therewasa@fishinthecalculator.me>
;;; Copyright © 2020-2025 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
@@ -3029,7 +3029,7 @@ logic, also known as grey logic.")
(define-public python-scikit-image
(package
(name "python-scikit-image")
- (version "0.25.2")
+ (version "0.26.0")
(source
(origin
(method git-fetch)
@@ -3038,24 +3038,16 @@ logic, also known as grey logic.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1cr3ki47z9g8kylnff1nrmv5fr3lrgmibl41q0v98pldghnslxdv"))))
+ (base32 "1x90jad3jqin8ws1j1i89zrajpcbn1h87nl5yxxf5cs3b7ha13rf"))))
(build-system pyproject-build-system)
(arguments
(list
- ;; tests: 8271 passed, 160 skipped, 1 deselected, 89 xfailed
#:test-flags
#~(list "--ignore=benchmarks/"
- "--pyargs" "skimage"
;; RuntimeWarning: divide by zero encountered in scalar divide
- "-k" "not test_ellipse_parameter_stability")
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'check 'remove-local-source
- (lambda _
- (delete-file-recursively "skimage"))))))
- ;; See pyproject.toml for the list of build and run time requirements.
- ;; NOTE: scikit-image has an optional dependency on python-pooch, however
- ;; propagating it would enable many more tests that require online data.
+ ;; (see:
+ ;; <https://github.com/scikit-image/scikit-image/issues/7348>).
+ "-k" "not test_ellipse_parameter_stability")))
(propagated-inputs
(list python-imageio
python-lazy-loader
@@ -3079,6 +3071,7 @@ logic, also known as grey logic.")
(list python-meson
python-pytest
python-pytest-localserver
+ python-pytest-pretty
python-pythran))
(home-page "https://scikit-image.org/")
(synopsis "Image processing in Python")