Skip to content

Commit c2cbdb6

Browse files
authored
Merge 613f222 into 5a9daef
2 parents 5a9daef + 613f222 commit c2cbdb6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This release achieves 100% compliance with Python Array API specification (revis
2727
* Updated `dpnp.einsum` to add support for `order=None` [#2411](https://github.com/IntelPython/dpnp/pull/2411)
2828
* Updated Python Array API specification version supported to `2024.12` [#2416](https://github.com/IntelPython/dpnp/pull/2416)
2929
* Removed `einsum_call` keyword from `dpnp.einsum_path` signature [#2421](https://github.com/IntelPython/dpnp/pull/2421)
30+
* Changed `"max dimensions"` to `None` in array API capabilities [#2432](https://github.com/IntelPython/dpnp/pull/2432)
3031

3132
### Fixed
3233

dpnp/tests/test_array_api_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test_capabilities():
1818
caps = info.capabilities()
1919
assert caps["boolean indexing"] is True
2020
assert caps["data-dependent shapes"] is True
21-
assert caps["max dimensions"] == 64
21+
assert caps["max dimensions"] == None
2222

2323

2424
def test_default_device():

0 commit comments

Comments
 (0)