diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-04-30 13:35:30 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-05 22:38:16 +0200 |
commit | b343aef5aa95c96454f4b0c9aefeb4c7255ad687 (patch) | |
tree | a2538f835504fa2985efb50d1748432c0e45aa6c /gnu/packages | |
parent | 6be3c24d829f2a317d623b7a886f29c174202a19 (diff) | |
download | guix-b343aef5aa95c96454f4b0c9aefeb4c7255ad687.tar.gz guix-b343aef5aa95c96454f4b0c9aefeb4c7255ad687.zip |
gnu: python-scikit-learn: Update to 1.4.2.
* gnu/packages/machine-learning.scm (python-scikit-learn): Update to 1.4.2.
[native-inputs]: Replace python-cython-0.29.35 with python-cython-3.
Change-Id: Id8be08f931bf250a8ecb8bc46b44d7148b4c4a2f
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/machine-learning.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 4e54ca3350..80108293de 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1680,7 +1680,7 @@ computing environments.") (define-public python-scikit-learn (package (name "python-scikit-learn") - (version "1.3.2") + (version "1.4.2") (source (origin (method git-fetch) @@ -1690,7 +1690,7 @@ computing environments.") (file-name (git-file-name name version)) (sha256 (base32 - "1hr024vcilbjwlwn32ppadri0ypnzjmkfxhkkw8gih0qjvcvjbs7")))) + "0pdd508c9540x9qimq83b8kspb6mb98w7w7i7lnb1jqj7rijal6f")))) (build-system pyproject-build-system) (arguments (list @@ -1700,7 +1700,8 @@ computing environments.") ;; This test tries to access the internet. "not test_load_boston_alternative" ;; DID NOT RAISE <class 'ValueError'> - " and not test_singular_matrix")) + " and not test_check_pandas_sparse_invalid" + )) #:phases '(modify-phases %standard-phases (add-before 'build 'configure @@ -1726,7 +1727,7 @@ computing environments.") test-flags)))))))) (inputs (list openblas)) (native-inputs - (list python-cython-0.29.35 + (list python-cython-3 python-pandas python-pytest python-pytest-xdist)) |