diff --git a/ci/cpu/build.sh b/ci/cpu/build.sh index c029956a0..5ed0a3221 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.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 86e4a899d..1e2479b76 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.1" # Temporary workaround for Jupyter errors. # See https://github.com/rapidsai/dask-cuda/issues/1040 diff --git a/pyproject.toml b/pyproject.toml index 6ed22d821..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.9.2", - "distributed >=2022.9.2", + "dask ==2022.11.1", + "distributed ==2022.11.1", "pynvml >=11.0.0", "numpy >=1.18.0", "numba >=0.54",