diff options
author | Vinicius Monego <monego@posteo.net> | 2024-07-01 13:31:09 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2024-07-05 23:05:39 -0300 |
commit | f336eb30b16970a137972978176588587ea6874e (patch) | |
tree | 8d929d31f33dd68de7efb09e2916581e23b18d15 /gnu | |
parent | 2c49dd3550d2845a074394908d87a4937c2e8d4e (diff) | |
download | guix-f336eb30b16970a137972978176588587ea6874e.tar.gz guix-f336eb30b16970a137972978176588587ea6874e.zip |
gnu: python-gpytorch: Update to 1.12.
* gnu/packages/machine-learning.scm (python-gpytorch): Update to 1.12.
[arguments]: Enable previously failing test.
[propagated-inputs]: Add python-mpmath, python-scipy.
Change-Id: I50b9787b2abee2438adaf486d842f4af0d32d162
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/machine-learning.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 4ba77c946c..e24c55c666 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -5579,22 +5579,22 @@ linear algebra routines needed for structured matrices (or operators).") (define-public python-gpytorch (package (name "python-gpytorch") - (version "1.11") + (version "1.12") (source (origin (method url-fetch) (uri (pypi-uri "gpytorch" version)) (sha256 (base32 - "0q17bml53vixk3cwj3p893809927hz81fprwsmxpxqv5i4mvgyvj")))) + "1pwsccll1hrgkifdmlxzcn6cvnwvyq2cimqzbfgihr13yw51cb6w")))) (build-system pyproject-build-system) (arguments (list #:test-flags - ;; The error message in test_t_matmul_matrix suggests the error may - ;; be due to a bug in gpytorch. test_deprecated_methods fails with - ;; an AssertionError. - #~(list "-k" (string-append "not test_deprecated_methods" - " and not test_t_matmul_matrix")))) - (propagated-inputs (list python-linear-operator python-scikit-learn)) + ;; test_deprecated_methods fails with an AssertionError. + #~(list "-k" (string-append "not test_deprecated_methods")))) + (propagated-inputs (list python-linear-operator + python-mpmath + python-scikit-learn + python-scipy)) (native-inputs (list python-coverage python-flake8 python-flake8-print |