1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-ml-dtypes: Update to 0.5.3.

* gnu/packages/machine-learning.scm (python-ml-dtypes): Update to 0.5.3.
[native-inputs]: Remove python-wheel.
[source]: Add snippet.

Change-Id: I33988d41ab5967346921c054c5c4f4040e5427df
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Cayetano Santos
2025-10-30 16:52:51 +01:00
committed by jgart
parent 0a5e1e5bcf
commit 071b31a880

View File

@@ -541,7 +541,7 @@ Learning usecases.")
(define-public python-ml-dtypes
(package
(name "python-ml-dtypes")
(version "0.2.0")
(version "0.5.3")
(source
(origin
(method git-fetch)
@@ -550,7 +550,11 @@ Learning usecases.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1yv90f28c9w34430xjwvn1lzxdylvp1zi6b02cx7crla6qkvrzn5"))))
(base32 "0pc6y4g1l7pc8mfqdpg020613gksb4vpipn67wnvamn0q64j9j7r"))
(modules '((guix build utils)))
(snippet
;; Do not use bundled eigen.
'(delete-file-recursively "third_party/eigen"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -573,8 +577,7 @@ Learning usecases.")
(native-inputs (list pybind11
python-absl-py
python-pytest
python-setuptools
python-wheel))
python-setuptools))
(home-page "https://github.com/jax-ml/ml_dtypes")
(synopsis "NumPy dtype extensions used in machine learning")
(description