From c23faabcc72b61fd8c40bf17bf197aa291870579 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Sat, 1 Nov 2025 10:06:11 +0100 Subject: [PATCH] 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 --- gnu/packages/python-xyz.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a515777c360c385e6023eaebc6cb865ef06e5a7d..ac0aa3f0f3ae20a186ee79de3e461732a9ff1235 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