From ea9153f83e5b78367152e28f2f1c38cb52576316 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Fri, 21 Nov 2025 16:31:39 +0100 Subject: [PATCH] gnu: python-deepxde: Update to 1.14.0. * gnu/packages/machine-learning.scm (python-deepxde): Update to 1.14.0. [native-inputs]: Remove python-wheel. Change-Id: Iec5ce523468f848c2fb23649c2c2b7372a25fdd6 --- gnu/packages/machine-learning.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 441696d7ac31210d6c58f70d0e416c61b28a591a..0af29994a8da8a478c64c635399533847f3391c0 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -2798,13 +2798,13 @@ discrete, and conditional dimensions.") (define-public python-deepxde (package (name "python-deepxde") - (version "1.13.2") + (version "1.14.0") (source (origin (method url-fetch) (uri (pypi-uri "deepxde" version)) (sha256 (base32 - "11fm9c717pf2j5kb7skvy1nshdqz76m783ndxsd3q3lr5lkqg087")))) + "1dzh0q772fv192znjxshd616kqfwyp3b5iz2833d9n1m98wpxgbw")))) (build-system pyproject-build-system) (arguments (list #:tests? #f ; there are no tests @@ -2817,7 +2817,7 @@ discrete, and conditional dimensions.") ;; DeepXDE supported backends are TensorFlow (v1 and v2), PyTorch, JAX and ;; PaddlePaddle. We test with PyTorch because we have it up to date. (native-inputs (list python-pytorch python-setuptools - python-setuptools-scm python-wheel)) + python-setuptools-scm)) (propagated-inputs (list python-matplotlib python-numpy python-scikit-learn python-scikit-optimize python-scipy))