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 a45938f commit 243d139Copy full SHA for 243d139
1 file changed
.github/workflows/test-wheel-linux.yml
@@ -268,10 +268,12 @@ jobs:
268
269
- name: Ensure cuda-python installable
270
run: |
271
+ echo Showing wheels locally in $PWD
272
+ ls *.whl
273
if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
- pip install cuda_python*.whl
274
+ pip install cuda_python*.whl --find-links .
275
else
- pip install $(ls cuda_python*.whl)[all]
276
+ pip install $(ls cuda_python*.whl)[all] --find-links .
277
fi
278
279
- name: Install cuda.pathfinder extra wheels for testing
0 commit comments