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 4d3b322 commit 56d8a4dCopy full SHA for 56d8a4d
1 file changed
.github/workflows/test-wheel-linux.yml
@@ -251,8 +251,10 @@ jobs:
251
252
- name: Ensure cuda-python installable
253
run: |
254
+ echo Showing wheels locally in $PWD
255
+ ls *.whl
256
if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
- pip install cuda_python*.whl
257
+ pip install cuda_python*.whl --find-links .
258
else
- pip install $(ls cuda_python*.whl)[all]
259
+ pip install $(ls cuda_python*.whl)[all] --find-links .
260
fi
0 commit comments