Skip to content

Commit bfaf93e

Browse files
authored
gh-914: fix versions for array backends for 3.10 (#916)
1 parent 2f22488 commit bfaf93e

File tree

2 files changed

+118
-118
lines changed

2 files changed

+118
-118
lines changed

tests/fixtures/array_backends.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _check_version(lib: str, array_api_compliant_version: str) -> None:
5252

5353
def _import_and_add_numpy(xp_available_backends: dict[str, ModuleType]) -> None:
5454
"""Add numpy to the backends dictionary."""
55-
_check_version("numpy", "2.3.5")
55+
_check_version("numpy", "2.2.6")
5656
xp_available_backends["numpy"] = np
5757

5858

@@ -71,7 +71,7 @@ def _import_and_add_jax(xp_available_backends: dict[str, ModuleType]) -> None:
7171
"""Add jax to the backends dictionary."""
7272
import jax # noqa: PLC0415
7373

74-
_check_version("jax", "0.8.1")
74+
_check_version("jax", "0.6.2")
7575
xp_available_backends["jax.numpy"] = jax.numpy
7676
# enable 64 bit numbers
7777
jax.config.update("jax_enable_x64", val=True)

0 commit comments

Comments
 (0)