diff --git a/CHANGELOG.md b/CHANGELOG.md index d5de6326256..8709f82b076 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ This release achieves 100% compliance with Python Array API specification (revis * Updated `dpnp.einsum` to add support for `order=None` [#2411](https://github.com/IntelPython/dpnp/pull/2411) * Updated Python Array API specification version supported to `2024.12` [#2416](https://github.com/IntelPython/dpnp/pull/2416) * Removed `einsum_call` keyword from `dpnp.einsum_path` signature [#2421](https://github.com/IntelPython/dpnp/pull/2421) +* Changed `"max dimensions"` to `None` in array API capabilities [#2432](https://github.com/IntelPython/dpnp/pull/2432) ### Fixed diff --git a/dpnp/tests/test_array_api_info.py b/dpnp/tests/test_array_api_info.py index c3c8d687b03..b310192ffc5 100644 --- a/dpnp/tests/test_array_api_info.py +++ b/dpnp/tests/test_array_api_info.py @@ -18,7 +18,7 @@ def test_capabilities(): caps = info.capabilities() assert caps["boolean indexing"] is True assert caps["data-dependent shapes"] is True - assert caps["max dimensions"] == 64 + assert caps["max dimensions"] == None def test_default_device():