[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/47: gnu: python-umap-learn: Update to 0.5.5.
From: |
guix-commits |
Subject: |
17/47: gnu: python-umap-learn: Update to 0.5.5. |
Date: |
Wed, 10 Jan 2024 14:52:56 -0500 (EST) |
rekado pushed a commit to branch wip-python-science
in repository guix.
commit 6edbf4f80ab0c2e379b23a3029c5713dc62c7721
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 8 16:22:52 2024 +0100
gnu: python-umap-learn: Update to 0.5.5.
* gnu/packages/machine-learning.scm (python-umap-learn): Update to 0.5.5.
[build-system]: Use pyproject-build-system.
[arguments]: Remove 'numpy-compatibility and custom 'check phases.
Change-Id: I2123f66519730d43e454d9536e8cb7b6c4569d56
---
gnu/packages/machine-learning.scm | 30 +++++-------------------------
1 file changed, 5 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index f34e6dd5a4..2ae97505fb 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -3854,46 +3854,26 @@ methodxs at scale on CPU or GPU.")
(define-public python-umap-learn
(package
(name "python-umap-learn")
- (version "0.5.3")
+ (version "0.5.5")
(source
(origin
(method git-fetch) ;no tests in pypi release
(uri (git-reference
(url "https://github.com/lmcinnes/umap")
- (commit version)))
+ (commit (string-append "release-" version))))
(file-name (git-file-name name version))
(sha256
(base32
- "1315jkb0h1b579y9m59632f0nnpksilm01nxx46in0rq8zna8vsb"))))
- (build-system python-build-system)
+ "0ijyiaqycynwj1383cxp519c765gjbg1f6fjwbvqj1gims710w3d"))))
+ (build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
- (add-after 'unpack 'numpy-compatibility
- (lambda _
- (substitute* "umap/tests/test_umap_metrics.py"
- ;; See commit a714b59bd9e2ca2e63312bc3491b2b037a42f2f2
- (("sparse_binary_data.todense\\(\\),")
- "np.asarray(sparse_binary_data.todense()),")
- ;; See commit c7d05683325589ad432a55e109cacb9d631cfaa9
- (("sparse_spatial_data.todense\\(\\),")
- "np.asarray(sparse_spatial_data.todense()),"))
- ;; See commit 949abd082524fce8c45dfb147bcd8e8ef49eade3
- (substitute* "umap/tests/test_umap_ops.py"
- (("np.random,") "None,"))))
;; Numba needs a writable dir to cache functions.
(add-before 'check 'set-numba-cache-dir
(lambda _
- (setenv "NUMBA_CACHE_DIR" "/tmp")))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "HOME" "/tmp")
- (invoke "pytest" "-vv" "umap"
- ;; This test can fail because trust may only be
- ;; 0.9679405204460967 >= 0.97
- "-k" "not
test_densmap_trustworthiness_on_iris_supervised")))))))
+ (setenv "NUMBA_CACHE_DIR" "/tmp"))))))
(native-inputs (list python-pytest))
(propagated-inputs
(list python-numba
- branch wip-python-science created (now 9fb30db770), guix-commits, 2024/01/10
- 01/47: gnu: Add python-cython-0.29.35., guix-commits, 2024/01/10
- 02/47: gnu: Add pybind11-2.10., guix-commits, 2024/01/10
- 10/47: gnu: python-imageio: Update to 2.33.1., guix-commits, 2024/01/10
- 07/47: gnu: python-scipy: Update to 1.11.4., guix-commits, 2024/01/10
- 15/47: gnu: python-scikit-learn: Update to 1.3.2., guix-commits, 2024/01/10
- 16/47: gnu: python-pynndescent: Update to 0.5.11., guix-commits, 2024/01/10
- 17/47: gnu: python-umap-learn: Update to 0.5.5.,
guix-commits <=
- 18/47: gnu: Add python-cppy., guix-commits, 2024/01/10
- 12/47: gnu: python-afdko: Disable failing test., guix-commits, 2024/01/10
- 19/47: gnu: python-kiwisolver: Update to 1.4.5., guix-commits, 2024/01/10
- 26/47: gnu: python-poliastro: Make compatible with latest matplotlib., guix-commits, 2024/01/10
- 28/47: gnu: tadbit: Add missing input., guix-commits, 2024/01/10
- 23/47: gnu: Add python-pytest-nunit., guix-commits, 2024/01/10
- 30/47: gnu: python-pegasusio: Disable tests., guix-commits, 2024/01/10
- 31/47: gnu: python-reportlab: Update to 4.0.8., guix-commits, 2024/01/10
- 37/47: gnu: python-cartopy: Update to 0.22.0., guix-commits, 2024/01/10
- 03/47: gnu: python-doit: Update to 0.36.0., guix-commits, 2024/01/10