diff options
author | David Elsing <david.elsing@posteo.net> | 2025-01-22 18:32:16 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-01-27 14:42:39 +0100 |
commit | 04e5c96fb1ded8562c899e986dccbe13ec82f962 (patch) | |
tree | 9ddcc11ba5cd1f3890ffe974388383e075a1c567 /gnu/packages/machine-learning.scm | |
parent | b0eed01f5b5a0cc253f4e98f7270ac2928e677d1 (diff) |
gnu: onnx: Update to 1.17.0.
* gnu/packages/machine-learning.scm (onnx): Update to 1.17.0.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/machine-learning.scm')
-rw-r--r-- | gnu/packages/machine-learning.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index d248c1fc34..fe50c45828 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -27,7 +27,7 @@ ;;; Copyright © 2024 David Pflug <david@pflug.io> ;;; Copyright © 2024 Timothee Mathieu <timothee.mathieu@inria.fr> ;;; Copyright © 2024 Spencer King <spencer.king@geneoscopy.com> -;;; Copyright © 2024 David Elsing <david.elsing@posteo.net> +;;; Copyright © 2024, 2025 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2024 Andy Tai <atai@atai.org> ;;; ;;; This file is part of GNU Guix. @@ -1514,7 +1514,7 @@ in terms of new algorithms.") (define-public onnx (package (name "onnx") - (version "1.16.2") + (version "1.17.0") (source (origin (method git-fetch) (uri (git-reference @@ -1522,7 +1522,7 @@ in terms of new algorithms.") (commit (string-append "v" version)))) (sha256 (base32 - "0f5h204ksfz4ir3qq38ckxja1jfhf1vn5xzwrj83vkkbfjq6fv16")) + "1i6bh4z2xzz1maykr0xmrwfybm6i3g38vnx7hsls8hr58rdr30zn")) (file-name (git-file-name name version)) (patches (search-patches "onnx-shared-libraries.patch" |