diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-04 21:06:32 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:59 +0000 |
commit | 9285aa780d60431577691fd40bb11d6c78034934 (patch) | |
tree | dfc575deaff63875aa89922d942a68cc6bf33565 | |
parent | b909977f5fa2c9ee21cc2ac59916fced0ec500c7 (diff) | |
download | guix-9285aa780d60431577691fd40bb11d6c78034934.tar.gz guix-9285aa780d60431577691fd40bb11d6c78034934.zip |
gnu: python-array-api-compat: Update to 1.9.1.
* gnu/packages/python-xyz.scm (python-array-api-compat): Update to 1.9.1.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Ifc7e2e062e6684310bc4578229dffc40278e77e4
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 558f46f673..6199513e1c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1145,16 +1145,18 @@ from a docstring rather than the other way around.") (define-public python-array-api-compat (package (name "python-array-api-compat") - (version "1.6") + (version "1.9.1") (source (origin (method url-fetch) (uri (pypi-uri "array_api_compat" version)) (sha256 - (base32 "1bvn92v52h8p2zpinwv5bl1314kdjw3msalj91nczfdbrmay78bl")))) + (base32 "1a4y6ph3gx5fc2q74mkwc239d26b3yvlawc6ifxsay9wr4lbifhp")))) (build-system pyproject-build-system) ;; Tests would require all supported array libraries, including pytorch (arguments (list #:tests? #false)) + (native-inputs + (list python-setuptools python-wheel)) (propagated-inputs (list python-numpy)) (home-page "https://data-apis.org/array-api-compat/") (synopsis "Array API compatibility wrapper for NumPy et al") |