From 79511ab80059eee27f63cee98b046249978b2f4c Mon Sep 17 00:00:00 2001 From: Jake Awe Date: Thu, 19 Jan 2023 09:46:08 -0600 Subject: [PATCH] pip --- ci/build_docs.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 27a3d627..e1fac9da 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -7,11 +7,12 @@ rapids-logger "Create test conda environment" . /opt/conda/etc/profile.d/conda.sh rapids-dependency-file-generator \ - --output conda \ + --output requirements \ --file_key docs \ - --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml + --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee req.txt -rapids-mamba-retry env create --force -f env.yaml -n test +rapids-mamba-retry create -y -n test +pip install req.txt conda activate test rapids-print-env