From c3ee31c04e3a6120ec681939d192277b0c94081b Mon Sep 17 00:00:00 2001 From: Ayan Das Date: Thu, 30 Oct 2025 04:18:01 +0530 Subject: [PATCH] gnu: python-gpytorch: Update to 1.14.2. * gnu/packages/machine-learning.scm (python-gpytorch): Update to 1.14.2. [source]: Update hash. [native-inputs]: Drop python-wheel. Change-Id: Icd6ef2b964e17b918bbe92179e0803d4e001ec13 Signed-off-by: Sharlatan Hellseher --- gnu/packages/machine-learning.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 3f22b364071c5d07cf38c6b934a8f440824a2df1..b63d0eaeb16998cf47e486f6a2ed5e967555a006 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -5932,13 +5932,13 @@ linear algebra routines needed for structured matrices (or operators).") (define-public python-gpytorch (package (name "python-gpytorch") - (version "1.14") + (version "1.14.2") (source (origin (method url-fetch) (uri (pypi-uri "gpytorch" version)) (sha256 (base32 - "13cs6dx8qa5j4ygji9w5xbmaqc68ihqyzz33fyyf9qa6d8gc2b03")))) + "1c30348kjawg0cl522qvbljg6adyy5bcpmqdg4mh09zk8r8z0hla")))) (build-system pyproject-build-system) (arguments (list #:test-flags @@ -5958,8 +5958,7 @@ linear algebra routines needed for structured matrices (or operators).") (native-inputs (list python-nbval python-pytest python-setuptools - python-setuptools-scm - python-wheel)) + python-setuptools-scm)) (home-page "https://gpytorch.ai") (synopsis "Implementation of Gaussian Processes in PyTorch") (description