diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-24 23:40:06 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:41 +0100 |
| commit | d1ff238ffb53fc3ef5615d504540f134fb906e4e (patch) | |
| tree | 30c921646d38d071df6c045ab9f031823b475004 /gnu/packages | |
| parent | 99039628f7724d3d4946f45ef17dff86882d31c2 (diff) | |
gnu: python-umap-learn: Update to 0.5.11.
* gnu/packages/machine-learning.scm (python-umap-learn): Update to 0.5.11.
[phases]{set-numa-cache-dir}: Move before {build}, see:
<https://codeberg.org/guix/guix/issues/5892>.
[native-inputs]: Remove python-wheel.
Change-Id: Ia05d93991f3fa9baced3a92260cfc111b91f7400
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/machine-learning.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index a884f2e776f..b7170470b36 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -4222,19 +4222,20 @@ methodxs at scale on CPU or GPU.") (define-public python-umap-learn (package (name "python-umap-learn") - (version "0.5.9") + (version "0.5.11") (source (origin - (method git-fetch) ;no tests in pypi release + (method git-fetch) (uri (git-reference (url "https://github.com/lmcinnes/umap") (commit (string-append "release-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0pkniia9lccdbshwl4sh2iria7dny13qk0flkk67msb777sm5bmn")))) + (base32 "0jl2vj51gj0dkngyn1c9ipvjq33cj1k4aic6zawym23vmksxdbap")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 1 failed, 145 passed, 61 skipped, 58 warnings #:test-flags ;; XXX: this one fails with unusually large deviation from the expected ;; result. @@ -4242,10 +4243,12 @@ methodxs at scale on CPU or GPU.") #:phases #~(modify-phases %standard-phases ;; Numba needs a writable dir to cache functions. - (add-before 'check 'set-numba-cache-dir + (add-before 'build 'set-numba-cache-dir (lambda _ (setenv "NUMBA_CACHE_DIR" "/tmp")))))) - (native-inputs (list python-pytest python-setuptools python-wheel)) + (native-inputs + (list python-pytest + python-setuptools)) (propagated-inputs (list python-numba python-numpy |
