summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-04-04 21:16:49 +0200
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:27 +0200
commitfd9b448bed1ef835c0afd2c33517895da92fc36f (patch)
treeded7d2d7e0415e2b66a4e513bdb531b1334a1a81
parentc326653ea576b7c933b5cc9ee29ed04836ec5503 (diff)
gnu: python-gpytorch: Remove uneeded inputs.
* gnu/packages/machine-learning.scm (python-gpytorch): Remove uneeded inputs. [arguments]{test-flags}: Ignore costly examples tests. [native-inputs]: Remove python-coverage, python-flake8, python-flake8-print, python-twine. Change-Id: Id3b9537d9f3306cc4a8e0eed19aabd5732854813 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/machine-learning.scm12
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm
index 15e5c5335e..fac4f971c7 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -6651,18 +6651,16 @@ linear algebra routines needed for structured matrices (or operators).")
(arguments
(list #:test-flags
;; test_deprecated_methods fails with an AssertionError.
- #~(list "-k" (string-append "not test_deprecated_methods"))))
+ #~(list "-k" (string-append "not test_deprecated_methods")
+ ;; Ignore lenghty tests of little relevance.
+ "--ignore=test/examples/")))
(propagated-inputs (list python-linear-operator
python-mpmath
python-scikit-learn
python-scipy))
- (native-inputs (list python-coverage
- python-flake8
- python-flake8-print
- python-nbval
+ (native-inputs (list python-nbval
python-pytest
- python-setuptools
- python-twine))
+ python-setuptools))
(home-page "https://gpytorch.ai")
(synopsis "Implementation of Gaussian Processes in PyTorch")
(description