summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-11-01 10:06:11 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-09 08:50:12 +0000
commitc23faabcc72b61fd8c40bf17bf197aa291870579 (patch)
tree0e27339c7b6e50217c917c29c0c808729627c297
parente56a5a1823796091ca352e4629d9a51d6c54df7d (diff)
gnu: python-array-api-compat: Update to 1.12.0.
* gnu/packages/python-xyz.scm (python-array-api-compat): Update to 1.12.0. [propagated-inputs]: Remove python-numpy. [native-inputs]: Remove python-wheel. Change-Id: Ie8dacb74c5443266b3edcb3c7c52a7cdc4f93fae Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a515777c360..ac0aa3f0f3a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2792,19 +2792,18 @@ from a docstring rather than the other way around.")
(define-public python-array-api-compat
(package
(name "python-array-api-compat")
- (version "1.9.1")
+ (version "1.12.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "array_api_compat" version))
(sha256
- (base32 "1a4y6ph3gx5fc2q74mkwc239d26b3yvlawc6ifxsay9wr4lbifhp"))))
+ (base32 "0x7r1ni9zpg68yz76dfza07q3pgwxjx15h5p4jn57pjhyqawcnsq"))))
(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))
+ (list python-setuptools))
(home-page "https://data-apis.org/array-api-compat/")
(synopsis "Array API compatibility wrapper for NumPy et al")
(description