File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ This release achieves 100% compliance with Python Array API specification (revis
27
27
* Updated ` dpnp.einsum ` to add support for ` order=None ` [ #2411 ] ( https://github.com/IntelPython/dpnp/pull/2411 )
28
28
* Updated Python Array API specification version supported to ` 2024.12 ` [ #2416 ] ( https://github.com/IntelPython/dpnp/pull/2416 )
29
29
* 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 )
30
31
31
32
### Fixed
32
33
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def test_capabilities():
18
18
caps = info .capabilities ()
19
19
assert caps ["boolean indexing" ] is True
20
20
assert caps ["data-dependent shapes" ] is True
21
- assert caps ["max dimensions" ] == 64
21
+ assert caps ["max dimensions" ] == None
22
22
23
23
24
24
def test_default_device ():
You can’t perform that action at this time.
0 commit comments