Skip to content

Commit 3818fa9

Browse files
committed
ENH: bump wrapped API versions to 2025.12
1 parent b52cb84 commit 3818fa9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

array_api_compat/cupy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
__import__(__package__ + '.linalg')
1313
__import__(__package__ + '.fft')
1414

15-
__array_api_version__: Final = '2024.12'
15+
__array_api_version__: Final = '2025.12'
1616

1717
__all__ = sorted(
1818
{name for name in globals() if not name.startswith("__")}

array_api_compat/dask/array/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ._aliases import * # type: ignore[assignment] # noqa: F403
1010
from ._info import __array_namespace_info__ # noqa: F401
1111

12-
__array_api_version__: Final = "2024.12"
12+
__array_api_version__: Final = "2025.12"
1313
del Final
1414

1515
# See the comment in the numpy __init__.py

array_api_compat/numpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
from .linalg import matrix_transpose, vecdot # type: ignore[no-redef] # noqa: F401
2828

29-
__array_api_version__: Final = "2024.12"
29+
__array_api_version__: Final = "2025.12"
3030

3131
__all__ = sorted(
3232
set(__all__)

array_api_compat/torch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__import__(__package__ + '.linalg')
1414
__import__(__package__ + '.fft')
1515

16-
__array_api_version__: Final = '2024.12'
16+
__array_api_version__: Final = '2025.12'
1717

1818
__all__ = sorted(
1919
set(__all__)

0 commit comments

Comments
 (0)