diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2026-03-19 15:29:28 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-19 15:43:23 +0100 |
| commit | bd23eb8d4cf70f1967886a45e421c985d86e6ab1 (patch) | |
| tree | 85aa17e19ac4ffbbb61d7b77bd44aab574f15cb6 /gnu/packages/machine-learning.scm | |
| parent | b93c51c4d7a677ffc00c5bc4b4e11dbd436b6f65 (diff) | |
gnu: python-linear-operator: Update to 0.6.1.
* gnu/packages/machine-learning.scm (python-linear-operator): Update to
0.6.1.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: Ieecdb2d7b1ade4fcb65eff5b17f2b1e4478cf0f9
Diffstat (limited to 'gnu/packages/machine-learning.scm')
| -rw-r--r-- | gnu/packages/machine-learning.scm | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 1f8f339be95..5ef7bac6482 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -6589,13 +6589,17 @@ inference.") (define-public python-linear-operator (package (name "python-linear-operator") - (version "0.6") - (source (origin - (method url-fetch) - (uri (pypi-uri "linear_operator" version)) - (sha256 - (base32 - "0m56f3zrm8xh1bpwh4g7jfc79rf4j94g6zmz663b58pig4w6dqm9")))) + (version "0.6.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cornellius-gp/linear_operator/") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1pfk4mdkvm75lyyb7zmq9pxclhica7fkk4cyvkpz8jncgimvh5qs")))) (build-system pyproject-build-system) (propagated-inputs (list python-jaxtyping python-mpmath @@ -6604,8 +6608,7 @@ inference.") (native-inputs (list python-pytest python-setuptools python-setuptools-scm - python-typeguard - python-wheel)) + python-typeguard)) (home-page "https://github.com/cornellius-gp/linear_operator/") (synopsis "Linear operator implementation") (description "LinearOperator is a PyTorch package for abstracting away the |
