[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/59: gnu: python-scikit-learn: Update to 1.3.2.
|
From: |
guix-commits |
|
Subject: |
14/59: gnu: python-scikit-learn: Update to 1.3.2. |
|
Date: |
Tue, 16 Jan 2024 07:16:23 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 247c427302daebf59a23b18d24a6bb0e9bbd906e
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 8 13:19:26 2024 +0100
gnu: python-scikit-learn: Update to 1.3.2.
* gnu/packages/machine-learning.scm (python-scikit-learn): Update to 1.3.2.
[build-system]: Use pyproject-build-system.
[arguments]: Move test flags to #:test-flags.
[native-inputs]: Replace python-cython with python-cython-0.29.35.
Change-Id: Iac6107dae752c42d9f57448a66eed0526974d57e
---
gnu/packages/machine-learning.scm | 28 +++++++++++++++-------------
1 file changed, 15 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index 9e65084f34..af55a99152 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -1613,7 +1613,7 @@ computing environments.")
(define-public python-scikit-learn
(package
(name "python-scikit-learn")
- (version "1.2.2")
+ (version "1.3.2")
(source
(origin
(method git-fetch)
@@ -1623,20 +1623,25 @@ computing environments.")
(file-name (git-file-name name version))
(sha256
(base32
- "0x7gfzvcdadf8jnvpz8m373bi37bc6sndfbjh9lzmn3p39pwm2hl"))))
- (build-system python-build-system)
+ "1hr024vcilbjwlwn32ppadri0ypnzjmkfxhkkw8gih0qjvcvjbs7"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
+ (list
+ #:test-flags
+ '(list "-m" "not network"
+ ;; This test tries to access the internet.
+ "-k" "not test_load_boston_alternative")
+ #:phases
+ '(modify-phases %standard-phases
(add-before 'build 'configure
(lambda _
(setenv "SKLEARN_BUILD_PARALLEL"
(number->string (parallel-job-count)))))
(add-after 'build 'build-ext
(lambda _ (invoke "python" "setup.py" "build_ext" "--inplace"
- "-j" (number->string (parallel-job-count)))))
+ "-j" (number->string (parallel-job-count)))))
(replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
+ (lambda* (#:key tests? test-flags #:allow-other-keys)
(when tests?
;; Restrict OpenBLAS threads to prevent segfaults while testing!
(setenv "OPENBLAS_NUM_THREADS" "1")
@@ -1647,14 +1652,11 @@ computing environments.")
;; Step out of the source directory to avoid interference;
;; we want to run the installed code with extensions etc.
(with-directory-excursion "/tmp"
- (invoke "pytest" "-vv" "--pyargs" "sklearn"
- "-m" "not network"
- "-n" (number->string (parallel-job-count))
- ;; This test tries to access the internet.
- "-k" "not test_load_boston_alternative"))))))))
+ (apply invoke "pytest" "--pyargs" "sklearn"
+ test-flags))))))))
(inputs (list openblas))
(native-inputs
- (list python-cython
+ (list python-cython-0.29.35
python-pandas
python-pytest
python-pytest-xdist))
- 32/59: gnu: python-plastid: Update to 0.6.1., (continued)
- 32/59: gnu: python-plastid: Update to 0.6.1., guix-commits, 2024/01/16
- 39/59: gnu: python-scikit-optimize: Make compatible with latest sklearn., guix-commits, 2024/01/16
- 37/59: gnu: scvelo: Make compatible with latest matplotlib., guix-commits, 2024/01/16
- 38/59: gnu: python-fit-nbinom: Disable tests., guix-commits, 2024/01/16
- 40/59: gnu: python-hicmatrix: Update to 17.1., guix-commits, 2024/01/16
- 42/59: gnu: python-pint: Add missing input., guix-commits, 2024/01/16
- 41/59: gnu: python-hicexplorer: Make compatible with latest scipy., guix-commits, 2024/01/16
- 44/59: gnu: Add python-asyncinject., guix-commits, 2024/01/16
- 52/59: gnu: python-xarray: Update to 2023.12.0., guix-commits, 2024/01/16
- 53/59: gnu: python-dask: Propagate click., guix-commits, 2024/01/16
- 14/59: gnu: python-scikit-learn: Update to 1.3.2.,
guix-commits <=
- 47/59: gnu: python-pandas: Update to 1.5.3., guix-commits, 2024/01/16
- 56/59: gnu: python-astroml: Make compatible with recent Matplot and Scipy., guix-commits, 2024/01/16
- 57/59: gnu: python-clingraph: Update to 1.1.2., guix-commits, 2024/01/16
- 59/59: gnu: gourmet: Add missing input., guix-commits, 2024/01/16
- 08/59: gnu: python-tifffile: Update to 2023.12.9., guix-commits, 2024/01/16
- 09/59: gnu: python-lazy-loader: Update to 0.3., guix-commits, 2024/01/16
- 10/59: gnu: python-imageio: Update to 2.33.1., guix-commits, 2024/01/16
- 13/59: gnu: python-matplotx: Disable test_png test., guix-commits, 2024/01/16
- 17/59: gnu: Add python-cppy., guix-commits, 2024/01/16
- 26/59: gnu: python-captum: Update to 0.7.0., guix-commits, 2024/01/16