From 80d72969ac5156f7e34dcaa38c074cfd77095536 Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Mon, 6 Feb 2023 02:12:07 -0600 Subject: [PATCH] Pin `dask` and `distributed` for release (#1106) This PR pins `dask` and `distributed` to `2023.1.1` for `23.02` release. xref: https://github.com/rapidsai/cudf/pull/12695 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Mark Sadang (https://github.com/msadang) - Peter Andreas Entschev (https://github.com/pentschev) URL: https://github.com/rapidsai/dask-cuda/pull/1106 --- ci/cpu/build.sh | 4 ++-- ci/gpu/build.sh | 4 ++-- dependencies.yaml | 4 ++-- pyproject.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ci/cpu/build.sh b/ci/cpu/build.sh index 6b91ca9ef..b1b279641 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.12.0" +export DASK_STABLE_VERSION="2023.1.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 b9661f522..2d6f35f10 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.12.0" +export DASK_STABLE_VERSION="2023.1.1" # Temporary workaround for Jupyter errors. # See https://github.com/rapidsai/dask-cuda/issues/1040 diff --git a/dependencies.yaml b/dependencies.yaml index 2d6739716..9b471e6a4 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -95,8 +95,8 @@ dependencies: common: - output_types: [conda, requirements] packages: - - dask>=2022.12.0 - - distributed>=2022.12.0 + - dask==2023.1.1 + - distributed==2023.1.1 - numba>=0.54 - numpy>=1.18.0 - pandas>=1.0 diff --git a/pyproject.toml b/pyproject.toml index 7163e4f68..58f156bb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,8 @@ authors = [ license = { text = "Apache-2.0" } requires-python = ">=3.8" dependencies = [ - "dask >=2022.12.0", - "distributed >=2022.12.0", + "dask ==2023.1.1", + "distributed ==2023.1.1", "pynvml >=11.0.0", "numpy >=1.18.0", "numba >=0.54",