From 6c033db8fb19af5baa8274534ea17ac607c194b4 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 3 May 2025 13:45:19 -0300 Subject: [PATCH] gnu: python-pynndescent: Update to 0.5.13. * gnu/packages/machine-learning.scm (python-pynndescent): Update to 0.5.13. Change-Id: I8aa5e906a6d2a34be4ed61c37fca4dd7c64fabe3 --- gnu/packages/machine-learning.scm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 59131628ac91be292fd449486b80d34186f26abd..728fc8cfeeb3953f78eb999c5a56abb3fb3d2a6e 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -15,7 +15,7 @@ ;;; Copyright © 2019 Brett Gilio ;;; Copyright © 2020 Konrad Hinsen ;;; Copyright © 2020 Edouard Klein -;;; Copyright © 2020, 2021, 2022, 2023, 2024 Vinicius Monego +;;; Copyright © 2020-2025 Vinicius Monego ;;; Copyright © 2020, 2021, 2022, 2023 Maxim Cournoyer ;;; Copyright © 2022, 2023, 2024 Nicolas Graves ;;; Copyright © 2022 Kiran Shila @@ -2304,22 +2304,21 @@ to return meaningful clusters (if there are any).") (define-public python-pynndescent (package (name "python-pynndescent") - (version "0.5.11") + (version "0.5.13") (source (origin (method url-fetch) (uri (pypi-uri "pynndescent" version)) (sha256 - (base32 "0l5dpdsk5vg7rpay81bncp04119hnl5z7zxjv63jrnm9spcwwi3g")))) + (base32 "1yq0k15964klz7135gpa7rcpixywzs4zxmcp8p4fw7haxv058hnp")))) (build-system pyproject-build-system) (native-inputs (list python-pytest python-setuptools python-wheel)) - (propagated-inputs - (list python-importlib-metadata - python-joblib - python-llvmlite - python-numba - python-scikit-learn - python-scipy)) + (propagated-inputs (list python-importlib-metadata + python-joblib + python-llvmlite + python-numba + python-scikit-learn + python-scipy)) (home-page "https://github.com/lmcinnes/pynndescent") (synopsis "Nearest neighbor descent for approximate nearest neighbors") (description