From c544a22f575983d8fc0caa1eeeffac318437276d Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 22 Oct 2024 08:00:39 -0500 Subject: [PATCH] combine pip installs --- ci/test_wheel.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ci/test_wheel.sh b/ci/test_wheel.sh index e7b648856..3c505b332 100755 --- a/ci/test_wheel.sh +++ b/ci/test_wheel.sh @@ -21,13 +21,8 @@ fi # echo to expand wildcard before adding `[extra]` requires for pip python -m pip install \ -v \ - "$(echo ./dist/pylibwholegraph_${RAPIDS_PY_CUDA_SUFFIX}*.whl)[test]" - -# install torch separately, to be sure we get a CUDA build -rapids-logger "Installing PyTorch" -python -m pip install \ - --index-url "${INDEX_URL}" \ - -v \ + --extra-index-url "${INDEX_URL}" \ + "$(echo ./dist/pylibwholegraph_${RAPIDS_PY_CUDA_SUFFIX}*.whl)[test]" \ 'torch>=2.0,<2.4.0a0' RAPIDS_TESTS_DIR=${RAPIDS_TESTS_DIR:-"${PWD}/test-results"}