From dcb8681c455e3608893e316ec8d7733e6fd08a46 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Wed, 16 Nov 2022 06:41:51 -0800 Subject: [PATCH 1/2] Pin dask and distributed for release --- ci/cpu/build.sh | 4 ++-- ci/gpu/build.sh | 4 ++-- requirements.txt | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/cpu/build.sh b/ci/cpu/build.sh index c029956a0..1edd67654 100755 --- a/ci/cpu/build.sh +++ b/ci/cpu/build.sh @@ -21,10 +21,10 @@ export GPUCI_CONDA_RETRY_SLEEP=30 # Whether to keep `dask/label/dev` channel in the env. If INSTALL_DASK_MAIN=0, # `dask/label/dev` channel is removed. -export INSTALL_DASK_MAIN=1 +export INSTALL_DASK_MAIN=0 # Dask version to install when `INSTALL_DASK_MAIN=0` -export DASK_STABLE_VERSION="2022.9.2" +export DASK_STABLE_VERSION="2022.11.0" # Switch to project root; also root of repo checkout cd "$WORKSPACE" diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index f200b57ad..79fb8e6c2 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -35,10 +35,10 @@ export NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1 # Install dask and distributed from main branch. Usually needed during # development time and disabled before a new dask-cuda release. -export INSTALL_DASK_MAIN=1 +export INSTALL_DASK_MAIN=0 # Dask version to install when `INSTALL_DASK_MAIN=0` -export DASK_STABLE_VERSION="2022.9.2" +export DASK_STABLE_VERSION="2022.11.0" # Temporary workaround for Jupyter errors. # See https://github.com/rapidsai/dask-cuda/issues/1040 diff --git a/requirements.txt b/requirements.txt index 7b40e89df..eac904c06 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -dask>=2022.9.2 -distributed>=2022.9.2 +dask==2022.11.0 +distributed==2022.11.0 pynvml>=11.0.0 numpy>=1.16.0 numba>=0.54 From a692a844b60b358a92dbe18ace07b2e5ab3f6ea8 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Thu, 1 Dec 2022 05:20:33 -0800 Subject: [PATCH 2/2] update to 2022.11.1 --- ci/cpu/build.sh | 2 +- ci/gpu/build.sh | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/cpu/build.sh b/ci/cpu/build.sh index 1edd67654..5ed0a3221 100755 --- a/ci/cpu/build.sh +++ b/ci/cpu/build.sh @@ -24,7 +24,7 @@ export GPUCI_CONDA_RETRY_SLEEP=30 export INSTALL_DASK_MAIN=0 # Dask version to install when `INSTALL_DASK_MAIN=0` -export DASK_STABLE_VERSION="2022.11.0" +export DASK_STABLE_VERSION="2022.11.1" # Switch to project root; also root of repo checkout cd "$WORKSPACE" diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index c5e8b240a..1e2479b76 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -38,7 +38,7 @@ export NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1 export INSTALL_DASK_MAIN=0 # Dask version to install when `INSTALL_DASK_MAIN=0` -export DASK_STABLE_VERSION="2022.11.0" +export DASK_STABLE_VERSION="2022.11.1" # Temporary workaround for Jupyter errors. # See https://github.com/rapidsai/dask-cuda/issues/1040 diff --git a/pyproject.toml b/pyproject.toml index ce85c58a6..4eec772de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,8 @@ authors = [ license= { text = "Apache-2.0" } requires-python = ">=3.8" dependencies = [ - "dask ==2022.11.0", - "distributed ==2022.11.0", + "dask ==2022.11.1", + "distributed ==2022.11.1", "pynvml >=11.0.0", "numpy >=1.18.0", "numba >=0.54",