[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
162/233: gnu: python-umap-learn: Update to 0.5.3.
From: |
guix-commits |
Subject: |
162/233: gnu: python-umap-learn: Update to 0.5.3. |
Date: |
Sun, 24 Apr 2022 23:39:59 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit aed2dfc5e3c6146a959634871f1ee5a47719a115
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
- 131/233: gnu: Add texlive-xindy., (continued)
- 131/233: gnu: Add texlive-xindy., guix-commits, 2022/04/24
- 139/233: gnu: python-httpcore: Update to 0.14.7 and enable tests., guix-commits, 2022/04/24
- 193/233: gnu: python-locust: Update to 2.8.6., guix-commits, 2022/04/24
- 207/233: gnu: python-pingouin: Update to 0.5.1., guix-commits, 2022/04/24
- 125/233: gnu: texlive-polyglossia: Rename and fix package., guix-commits, 2022/04/24
- 144/233: gnu: Add python-socksio., guix-commits, 2022/04/24
- 145/233: gnu: python-sqlalchemy: Run tests in parallel via xdist., guix-commits, 2022/04/24
- 146/233: gnu: python-sqlalchemy: Update to 1.4.35., guix-commits, 2022/04/24
- 153/233: gnu: Add python-jupyterlab-server., guix-commits, 2022/04/24
- 158/233: gnu: python-pandas: Build and run tests in parallel., guix-commits, 2022/04/24
- 162/233: gnu: python-umap-learn: Update to 0.5.3.,
guix-commits <=
- 167/233: gnu: python-jupyter-protocol: Update to 0.2.0., guix-commits, 2022/04/24
- 170/233: gnu: python-types-dataclasses: Fix typo., guix-commits, 2022/04/24
- 177/233: gnu: python-can: Update to 4.0.0., guix-commits, 2022/04/24
- 178/233: gnu: python-amqp: Update to 5.1.1 and enable tests., guix-commits, 2022/04/24
- 187/233: gnu: Add python-pyyaml-env-tag., guix-commits, 2022/04/24
- 199/233: gnu: weasyprint: Update to 54.3., guix-commits, 2022/04/24
- 203/233: gnu: setzer: Add python-wrapper to fix build., guix-commits, 2022/04/24
- 208/233: gnu: python-flask-wtf: Update to 1.0.1., guix-commits, 2022/04/24
- 209/233: gnu: python-flask-login: Update to 0.6.0., guix-commits, 2022/04/24
- 215/233: gnu: python-pydata-sphinx-theme: Update to 0.7.2., guix-commits, 2022/04/24