From 0207ff2dc5573663d2cd67a10338f72497c62470 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Mon, 7 Jun 2021 07:28:01 -0700 Subject: [PATCH 1/2] Update UCX-Py version to 0.20 --- ci/benchmark/build.sh | 2 +- ci/gpu/build.sh | 2 +- ci/release/update-version.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/benchmark/build.sh b/ci/benchmark/build.sh index d48f475f2eb..f5cedae5e29 100644 --- a/ci/benchmark/build.sh +++ b/ci/benchmark/build.sh @@ -74,7 +74,7 @@ gpuci_conda_retry install -c nvidia -c rapidsai -c rapidsai-nightly -c conda-for "cudatoolkit=$CUDA_REL" \ "dask-cudf=${MINOR_VERSION}" \ "dask-cuda=${MINOR_VERSION}" \ - "ucx-py=${MINOR_VERSION}" \ + "ucx-py=0.20.*" \ "ucx-proc=*=gpu" \ "rapids-build-env=${MINOR_VERSION}" \ rapids-pytest-benchmark diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 30dc7373e15..7c9c353f23c 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -62,7 +62,7 @@ gpuci_conda_retry install -y \ "cudatoolkit=$CUDA_REL" \ "dask-cudf=${MINOR_VERSION}" \ "dask-cuda=${MINOR_VERSION}" \ - "ucx-py=${MINOR_VERSION}" \ + "ucx-py=0.20.*" \ "ucx-proc=*=gpu" \ "rapids-build-env=$MINOR_VERSION.*" \ "rapids-notebook-env=$MINOR_VERSION.*" \ diff --git a/ci/release/update-version.sh b/ci/release/update-version.sh index 0629f19d3b8..5ee9a6ebd9a 100755 --- a/ci/release/update-version.sh +++ b/ci/release/update-version.sh @@ -50,6 +50,6 @@ for FILE in conda/environments/*.yml; do sed_runner "s/rmm=${CURRENT_SHORT_TAG}/rmm=${NEXT_SHORT_TAG}/g" ${FILE}; sed_runner "s/dask-cuda=${CURRENT_SHORT_TAG}/dask-cuda=${NEXT_SHORT_TAG}/g" ${FILE}; sed_runner "s/dask-cudf=${CURRENT_SHORT_TAG}/dask-cudf=${NEXT_SHORT_TAG}/g" ${FILE}; - sed_runner "s/ucx-py=${CURRENT_SHORT_TAG}/ucx-py=${NEXT_SHORT_TAG}/g" ${FILE}; + sed_runner "s/ucx-py=0.20/ucx-py=0.20/g" ${FILE}; sed_runner "s/cuxfilter=${CURRENT_SHORT_TAG}/cuxfilter=${NEXT_SHORT_TAG}/g" ${FILE}; -done \ No newline at end of file +done From 7a12b986767b9eec26f90cb3d7506374430d9860 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Mon, 7 Jun 2021 08:17:18 -0700 Subject: [PATCH 2/2] Remove ucx-py from update-version.sh --- ci/release/update-version.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/release/update-version.sh b/ci/release/update-version.sh index 5ee9a6ebd9a..c45d7eacd88 100755 --- a/ci/release/update-version.sh +++ b/ci/release/update-version.sh @@ -50,6 +50,5 @@ for FILE in conda/environments/*.yml; do sed_runner "s/rmm=${CURRENT_SHORT_TAG}/rmm=${NEXT_SHORT_TAG}/g" ${FILE}; sed_runner "s/dask-cuda=${CURRENT_SHORT_TAG}/dask-cuda=${NEXT_SHORT_TAG}/g" ${FILE}; sed_runner "s/dask-cudf=${CURRENT_SHORT_TAG}/dask-cudf=${NEXT_SHORT_TAG}/g" ${FILE}; - sed_runner "s/ucx-py=0.20/ucx-py=0.20/g" ${FILE}; sed_runner "s/cuxfilter=${CURRENT_SHORT_TAG}/cuxfilter=${NEXT_SHORT_TAG}/g" ${FILE}; done