We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 243d139 commit 1f0d8c9Copy full SHA for 1f0d8c9
.github/workflows/test-wheel-linux.yml
@@ -269,11 +269,11 @@ jobs:
269
- name: Ensure cuda-python installable
270
run: |
271
echo Showing wheels locally in $PWD
272
- ls *.whl
+ ls dist/*.whl
273
if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
274
- pip install cuda_python*.whl --find-links .
+ pip install cuda_python*.whl --find-links dist
275
else
276
- pip install $(ls cuda_python*.whl)[all] --find-links .
+ pip install $(ls cuda_python*.whl)[all] --find-links dist
277
fi
278
279
- name: Install cuda.pathfinder extra wheels for testing
0 commit comments