This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch python-team
in repository guix.

The following commit(s) were added to refs/heads/python-team by this push:
     new 425e0973c8 gnu: python-umap-learn: Update to 0.5.11.
425e0973c8 is described below

commit 425e0973c82a06a3fcb9d0aca78d0f9d6d600ff1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 24 23:40:06 2026 +0000

    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
---
 gnu/packages/machine-learning.scm | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index a2ef73dc97..9ceff51480 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -4082,19 +4082,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.
@@ -4102,10 +4103,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

Reply via email to