Skip to content

Commit 8535d96

Browse files
committed
Fix install command
1 parent 921d40e commit 8535d96

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/array-api-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
else
4040
python -m pip install 'numpy>=1.26,<2.0';
4141
fi
42-
python -m pip install .
42+
python -m pip install ${GITHUB_WORKSPACE}/array-api-strict
4343
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt
4444
- name: Run the array API testsuite
4545
env:
@@ -48,6 +48,5 @@ jobs:
4848
# tests fail in numpy 1.26 on bad scalar type promotion behavior)
4949
NPY_PROMOTION_STATE: weak
5050
run: |
51-
export PYTHONPATH="${GITHUB_WORKSPACE}/array-api-compat"
5251
cd ${GITHUB_WORKSPACE}/array-api-tests
5352
pytest array_api_tests/ --xfails-file ${PYTEST_ARGS}

0 commit comments

Comments
 (0)