-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2023.12 support #249
Comments
Note: |
Notes for |
I edited the above list to add a couple of things I missed. |
Should this have been closed? |
Good catch! |
I noticed the searchsorted test is broken because it uses diff --git a/src/array_api_stubs/_2023_12/__init__.py b/src/array_api_stubs/_2023_12/__init__.py
index 8415f276..537ea8f8 100644
--- a/src/array_api_stubs/_2023_12/__init__.py
+++ b/src/array_api_stubs/_2023_12/__init__.py
@@ -16,7 +16,7 @@ from .statistical_functions import *
from .utility_functions import *
from . import linalg
from . import fft
-from . import info
+from .info import __array_namespace_info__
__array_api_version__: str = "YYYY.MM" but the fix doesn't seem to work. |
I think we can close this actually. Some of the above functions are only partially tested, but that is tracked at #301 |
We need a tracking issue for 2023.12 support in the test suite.
Here is the list of changes https://data-apis.org/array-api/latest/changelog.html#v2023-12
New Functions
__array_namespace_info__
(i.e., the inspection API)clip
copysign
cumulative_sum
hypot
maximum
minimum
moveaxis
repeat
searchsorted
signbit
tile
unstack
API Changes
device
keyword added toastype
from_dlpack
requires exceptions in some casescopy
anddevice
keywords tofrom_dlpack
sum
,prod
,trace
output dtype change (Update dtype assertions in sum-like tests for>2023.12
versions #234)Other Changes
(not sure if these need tests)
max
andmin
. Just need to make sure we aren't testing this.take
.tensordot
should support negative axes (not sure if this is already tested)I think that's everything but you might want to read through the changes too to check if I missed something.
The text was updated successfully, but these errors were encountered: