diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-12 16:06:46 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:18:47 +0100 |
| commit | 75d3068065c683bf1b2cc0e327d692998dfb4cb9 (patch) | |
| tree | e0b68c29734f927ace44e3ddc36cf839896617c7 /gnu/packages/python-science.scm | |
| parent | 22239043a77619b1d4585d15c2cd3e7bc17d2a85 (diff) | |
gnu: python-scikit-image-next: Deprecate by python-scikit-image.
* gnu/packages/python-science.scm (python-scikit-image-next): Deprecate
in favor of python-scikit-image.
Change-Id: I006f4a302eabab82abd9c853f1b6a3d352f546ef
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-science.scm')
| -rw-r--r-- | gnu/packages/python-science.scm | 34 |
1 files changed, 2 insertions, 32 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 7641d2c86dc..89930b1b131 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -2923,38 +2923,8 @@ logic, also known as grey logic.") "Scikit-image is a collection of algorithms for image processing.") (license license:bsd-3))) -;; TODO: Port simplified test steps to python-scikit on the next refresh round. -(define-public python-scikit-image-next - (package - (inherit python-scikit-image) - (name "python-scikit-image") - (version "0.25.2") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/scikit-image/scikit-image") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1cr3ki47z9g8kylnff1nrmv5fr3lrgmibl41q0v98pldghnslxdv")))) - (arguments - (list - ;; tests: 8489 passed, 128 skipped - #:test-flags - #~(list "--ignore=benchmarks" - "--pyargs" "skimage") - #:phases - #~(modify-phases %standard-phases - (add-before 'check 'remove-local-skimage - (lambda _ - ;; This would otherwise interfere with finding the installed - ;; skimage when running tests. - (delete-file-recursively "skimage"))) - (add-before 'check 'post-check - (lambda _ - (for-each delete-file-recursively - (find-files #$output "__pycache__" #:directories? #t))))))))) +;; XXX: Deprecated on <2025-12-12>. +(define-deprecated/public-alias python-scikit-image-next python-scikit-image) (define-public python-scikit-misc (package |
