From 77b434ed197f898c1a85ae17028770f4a11ad6b2 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 12 Jun 2024 08:22:28 -0500 Subject: [PATCH] Avoid `--find-links`. (#1583) Avoid `pip --find-links` which can fail to install and fall back to older wheels. See https://github.com/rapidsai/build-planning/issues/69 for more information. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - James Lamb (https://github.com/jameslamb) URL: https://github.com/rapidsai/rmm/pull/1583 --- ci/test_wheel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_wheel.sh b/ci/test_wheel.sh index 50cb203c3..8ba03f3a2 100755 --- a/ci/test_wheel.sh +++ b/ci/test_wheel.sh @@ -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