File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -268,22 +268,18 @@ jobs:
268268
269269 - name : Ensure cuda-python installable
270270 run : |
271- echo Showing wheels locally in $PWD
272- ls ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}/*.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.
276271 if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
277- pip install cuda_python*.whl --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
272+ pip install cuda_python*.whl
278273 else
279- pip install $(ls cuda_python*.whl)[all] --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
274+ pip install $(ls cuda_python*.whl)[all]
280275 fi
281276
282277 - name : Install cuda.pathfinder extra wheels for testing
283278 run : |
284279 set -euo pipefail
285280 pushd cuda_pathfinder
286- ls -R
281+ # Install pathfinder from the pre-built wheel, since building from
282+ # source won't work in this context (we don't have a git checkout).
287283 pip install --only-binary=:all: -v ./*.whl --group "test-cu${TEST_CUDA_MAJOR}"
288284 pip list
289285 popd
You can’t perform that action at this time.
0 commit comments