File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -269,11 +269,14 @@ jobs:
269269 - name : Ensure cuda-python installable
270270 run : |
271271 echo Showing wheels locally in $PWD
272- ls *.whl
272+ 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.
273276 if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
274- pip install cuda_python*.whl --find-links .
277+ pip install cuda_python*.whl --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
275278 else
276- pip install $(ls cuda_python*.whl)[all] --find-links .
279+ pip install $(ls cuda_python*.whl)[all] --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
277280 fi
278281
279282 - name : Install cuda.pathfinder extra wheels for testing
You can’t perform that action at this time.
0 commit comments