sharlatan pushed a commit to branch python-team
in repository guix.
commit 98d02f1a4a0e0a0e260328b1fb18e337518b7cae
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Nov 4 21:06:32 2024 +0000
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
---
gnu/packages/python-xyz.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9b204d9b01..91cfbd58b0 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")