File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
strategy :
10
10
matrix :
11
- python-version : [3.8, 3.9 ]
11
+ python-version : ["3.10", "3.11" ]
12
12
13
13
steps :
14
14
- name : Checkout array-api-tests
22
22
- name : Install dependencies
23
23
run : |
24
24
python -m pip install --upgrade pip
25
- python -m pip install numpy==1.22.1
25
+ python -m pip install numpy==1.26.2
26
26
python -m pip install -r requirements.txt
27
27
- name : Run the test suite
28
28
env :
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ array_api_tests/test_linalg.py::test_trace
9
9
# https://github.com/numpy/numpy/issues/20326#issuecomment-1012380448
10
10
array_api_tests/test_set_functions.py
11
11
12
+ # newaxis not included in numpy namespace as of v1.26.2
13
+ array_api_tests/test_constants.py::test_newaxis
14
+
15
+ # linalg.solve issue in numpy.array_api as of v1.26.2 (see numpy#25146)
16
+ array_api_tests/test_linalg.py::test_solve
17
+
12
18
# https://github.com/numpy/numpy/issues/21373
13
19
array_api_tests/test_array_object.py::test_getitem
14
20
You can’t perform that action at this time.
0 commit comments