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
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
Original file line number Diff line number Diff 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
2424def test_default_device ():
You can’t perform that action at this time.
0 commit comments