diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 28e8b7d9..dea32cfe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: - name: Run the test suite env: ARRAY_API_TESTS_MODULE: array_api_strict - ARRAY_API_STRICT_API_VERSION: 2024.12 + ARRAY_API_STRICT_API_VERSION: 2025.12 run: | pytest -v -rxXfE --skips-file=/tmp/array-api-strict/array-api-tests-xfails.txt array_api_tests/ # We also have internal tests that isn't really necessary for adopters diff --git a/array-api b/array-api index 772fb461..5f847a38 160000 --- a/array-api +++ b/array-api @@ -1 +1 @@ -Subproject commit 772fb461da6ff904ecfcac4a24676e40efcbdb0c +Subproject commit 5f847a3858875c682ae901aa22b0413bf24be9da diff --git a/array_api_tests/__init__.py b/array_api_tests/__init__.py index d01af52d..7033af35 100644 --- a/array_api_tests/__init__.py +++ b/array_api_tests/__init__.py @@ -86,7 +86,7 @@ def _from_dtype(*a, **kw): api_version = os.getenv( - "ARRAY_API_TESTS_VERSION", getattr(xp, "__array_api_version__", "2024.12") + "ARRAY_API_TESTS_VERSION", getattr(xp, "__array_api_version__", "2025.12") ) xps = array_api.make_strategies_namespace(xp, api_version=api_version) diff --git a/requirements.txt b/requirements.txt index c5508119..772e5768 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ pytest pytest-json-report -hypothesis>=6.130.5 +hypothesis>=6.151.0 ndindex>=1.8