[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
162/232: gnu: python-umap-learn: Update to 0.5.3.
From: |
guix-commits |
Subject: |
162/232: gnu: python-umap-learn: Update to 0.5.3. |
Date: |
Sun, 24 Apr 2022 23:59:06 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit f7f4a7c6d437ef285517cc171d3775caf039e9d7
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Apr 18 20:09:37 2022 -0400
gnu: python-umap-learn: Update to 0.5.3.
* gnu/packages/machine-learning.scm (python-umap-learn): Update to 0.5.3.
[source]: Use git.
[arguments]: New field.
[native-inputs]: Delete python-joblib and python-nose. Add python-pytest.
[propagated-inputs]: Add python-pynndescent and python-tqdm.
[synopsis]: Fix indentation.
[description]: Fix typo and re-indent.
---
gnu/packages/machine-learning.scm | 40 ++++++++++++++++++++++++++-------------
1 file changed, 27 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index 5f14453f01..3897342345 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -2796,26 +2796,40 @@ These include a barrier, broadcast, and allreduce.")
(define-public python-umap-learn
(package
(name "python-umap-learn")
- (version "0.3.10")
+ (version "0.5.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "umap-learn" version))
+ (method git-fetch) ;no tests in pypi release
+ (uri (git-reference
+ (url "https://github.com/lmcinnes/umap")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
(base32
- "02ada2yy6km6zgk2836kg1c97yrcpalvan34p8c57446finnpki1"))))
+ "1315jkb0h1b579y9m59632f0nnpksilm01nxx46in0rq8zna8vsb"))))
(build-system python-build-system)
- (native-inputs
- (list python-joblib python-nose))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "HOME" "/tmp")
+ (invoke "pytest" "-vv" "umap")))))))
+ (native-inputs (list python-pytest))
(propagated-inputs
- (list python-numba python-numpy python-scikit-learn python-scipy))
+ (list python-numba
+ python-numpy
+ python-pynndescent
+ python-scikit-learn
+ python-scipy
+ python-tqdm))
(home-page "https://github.com/lmcinnes/umap")
- (synopsis
- "Uniform Manifold Approximation and Projection")
- (description
- "Uniform Manifold Approximation and Projection is a dimension reduction
-technique that can be used for visualisation similarly to t-SNE, but also for
-general non-linear dimension reduction.")
+ (synopsis "Uniform Manifold Approximation and Projection")
+ (description "Uniform Manifold Approximation and Projection is a dimension
+reduction technique that can be used for visualization similarly to t-SNE, but
+also for general non-linear dimension reduction.")
(license license:bsd-3)))
(define-public nnpack
- 142/232: gnu: python-httpx: Update to 0.22.0., (continued)
- 142/232: gnu: python-httpx: Update to 0.22.0., guix-commits, 2022/04/24
- 143/232: gnu: python-uvicorn: Update to 0.17.6., guix-commits, 2022/04/24
- 149/232: gnu: python-fakeredis: Update to 1.7.1., guix-commits, 2022/04/24
- 152/232: gnu: Add python-openapi-core., guix-commits, 2022/04/24
- 153/232: gnu: Add python-jupyterlab-server., guix-commits, 2022/04/24
- 156/232: gnu: python-llvmlite: Update to 0.38.0., guix-commits, 2022/04/24
- 158/232: gnu: python-pandas: Build and run tests in parallel., guix-commits, 2022/04/24
- 159/232: gnu: python-pandas: Update to 1.4.2., guix-commits, 2022/04/24
- 160/232: gnu: python-scikit-learn: Parallelize build and test suite., guix-commits, 2022/04/24
- 164/232: gnu: python-voila: Update to 0.3.5., guix-commits, 2022/04/24
- 162/232: gnu: python-umap-learn: Update to 0.5.3.,
guix-commits <=
- 170/232: gnu: python-types-dataclasses: Fix typo., guix-commits, 2022/04/24
- 172/232: gnu: python-readme-renderer: Update to 34.0., guix-commits, 2022/04/24
- 173/232: gnu: mbed-tools: Update to 7.53.0 and relax click version requirement., guix-commits, 2022/04/24
- 167/232: gnu: python-jupyter-protocol: Update to 0.2.0., guix-commits, 2022/04/24
- 177/232: gnu: python-can: Update to 4.0.0., guix-commits, 2022/04/24
- 191/232: gnu: Add python-crccheck., guix-commits, 2022/04/24
- 198/232: gnu: Add python-pydyf., guix-commits, 2022/04/24
- 206/232: gnu: Remove python2-keyring., guix-commits, 2022/04/24
- 188/232: gnu: python-ghp-import: Update to 2.0.2., guix-commits, 2022/04/24
- 207/232: gnu: python-pingouin: Update to 0.5.1., guix-commits, 2022/04/24