Skip to content

Commit

Permalink
Avoid --find-links. (#1583)
Browse files Browse the repository at this point in the history
Avoid `pip --find-links` which can fail to install and fall back to older wheels. See rapidsai/build-planning#69 for more information.

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - James Lamb (https://github.com/jameslamb)

URL: #1583
  • Loading branch information
bdice authored and rongou committed Jun 17, 2024
1 parent 6349f29 commit 77b434e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ WHEELHOUSE="${PWD}/dist/"
RAPIDS_PY_WHEEL_NAME="rmm_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-s3 python "${WHEELHOUSE}"

# echo to expand wildcard before adding '[extra]' requires for pip
python -m pip install "rmm-${RAPIDS_PY_CUDA_SUFFIX}[test]>=0.0.0a0" --find-links "${WHEELHOUSE}"
python -m pip install -v "$(echo "${WHEELHOUSE}"/rmm_${RAPIDS_PY_CUDA_SUFFIX}*.whl)[test]"

python -m pytest ./python/rmm/rmm/tests

0 comments on commit 77b434e

Please sign in to comment.