[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/11: gnu: python-pynndescent: Update to 0.5.5.
From: |
guix-commits |
Subject: |
05/11: gnu: python-pynndescent: Update to 0.5.5. |
Date: |
Fri, 14 Jan 2022 15:32:18 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit 0848b5595c0cd21069bb87596ca72299164e6e66
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Fri Jan 14 20:09:21 2022 +0000
gnu: python-pynndescent: Update to 0.5.5.
* gnu/packages/machine-learning.scm (python-pynndescent): Update to 0.5.5.
[arguments]<#:phases>: Override 'check phase.
[native-inputs]: Remove python-nose. Add python-pytest.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/machine-learning.scm | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index 9de0d49e60..56dcc9baf2 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1210,16 +1210,24 @@ for scientific computing and data science (e.g. BLAS
and OpenMP).")
(define-public python-pynndescent
(package
(name "python-pynndescent")
- (version "0.5.2")
+ (version "0.5.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pynndescent" version))
(sha256
- (base32 "0w87c2v0li2rdbx6qfc2lb6y6bxpdy3jwfgzfs1kcr4d1chj5zfr"))))
+ (base32 "10pqqqc3jkpw03cyzy04slxmpgyhqnlgbyk0c1cv7kqr5d0zhzbs"))))
(build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" "-m" "pytest" "--pyargs" "pynndescent")))))))
(native-inputs
- (list python-nose))
+ (list python-pytest))
(propagated-inputs
(list python-joblib python-llvmlite python-numba python-scikit-learn
python-scipy))
- branch master updated (db068aaa14 -> 354426bbcb), guix-commits, 2022/01/14
- 05/11: gnu: python-pynndescent: Update to 0.5.5.,
guix-commits <=
- 06/11: gnu: python-opentsne: Update to 0.6.1., guix-commits, 2022/01/14
- 02/11: gnu: python-qasync: Update to 0.22.0., guix-commits, 2022/01/14
- 01/11: gnu: python-anyqt: Update to 0.0.13., guix-commits, 2022/01/14
- 03/11: gnu: Add python-pytest-pydocstyle., guix-commits, 2022/01/14
- 04/11: gnu: python-pytest-pycodestyle: Update to 2.2.0., guix-commits, 2022/01/14
- 08/11: gnu: python-qtconsole: Enable tests., guix-commits, 2022/01/14
- 10/11: gnu: python-orange-widget-base: Update to 4.16.1., guix-commits, 2022/01/14
- 07/11: gnu: python-qtconsole: Update to 4.7.7., guix-commits, 2022/01/14
- 11/11: gnu: orange: Update to 3.31.1., guix-commits, 2022/01/14
- 09/11: gnu: python-orange-canvas-core: Update to 0.1.24., guix-commits, 2022/01/14