We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 243d139 commit f25aec8Copy full SHA for f25aec8
1 file changed
.github/workflows/test-wheel-linux.yml
@@ -269,11 +269,14 @@ jobs:
269
- name: Ensure cuda-python installable
270
run: |
271
echo Showing wheels locally in $PWD
272
- ls *.whl
+ ls dist/*.whl
273
+ # We need to find the `cuda_bindings` dependency from a local
274
+ # directory, rather than on PyPI, since the version hasn't been
275
+ # released yet.
276
if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
- pip install cuda_python*.whl --find-links .
277
+ pip install cuda_python*.whl --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
278
else
- pip install $(ls cuda_python*.whl)[all] --find-links .
279
+ pip install $(ls cuda_python*.whl)[all] --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
280
fi
281
282
- name: Install cuda.pathfinder extra wheels for testing
0 commit comments