We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf087f commit a2507f7Copy full SHA for a2507f7
2 files changed
pyproject.toml
@@ -86,7 +86,8 @@ test = [
86
"pytest-sugar",
87
"pytest-split",
88
"dpgui",
89
- 'array-api-strict>=2,!=2.1.1;python_version>="3.9"',
+ # to support Array API 2024.12
90
+ 'array-api-strict>=2.2;python_version>="3.9"',
91
]
92
docs = [
93
"sphinx>=3.1.1",
source/tests/array_api_strict/__init__.py
@@ -5,4 +5,4 @@
5
6
# this is the default version in the latest array_api_strict,
7
# but in old versions it may be 2022.12
8
-array_api_strict.set_array_api_strict_flags(api_version="2023.12")
+array_api_strict.set_array_api_strict_flags(api_version="2024.12")
0 commit comments