From 464a11b4f150b8771381c4d770d8be5350d3b94b Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 16 Nov 2022 12:50:57 -0600 Subject: [PATCH] Pin `dask` and `distributed` for release (#1022) This PR pins `dask` and `distributed` to `2022.11.0` for `22.12` release. xref: https://github.com/rapidsai/cudf/pull/12165 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/raft/pull/1022 --- ci/gpu/build.sh | 4 ++-- conda/environments/raft_dev_cuda11.2.yml | 4 ++-- conda/environments/raft_dev_cuda11.4.yml | 4 ++-- conda/environments/raft_dev_cuda11.5.yml | 4 ++-- conda/recipes/raft-dask/meta.yaml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 53041be957..534e25eb15 100644 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -34,10 +34,10 @@ unset GIT_DESCRIBE_TAG export UCX_PY_VERSION='0.29.*' # Whether to install dask nightly or stable packages. -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" ################################################################################ # SETUP - Check environment diff --git a/conda/environments/raft_dev_cuda11.2.yml b/conda/environments/raft_dev_cuda11.2.yml index 4a6e7e6fc4..24ffc6bff3 100644 --- a/conda/environments/raft_dev_cuda11.2.yml +++ b/conda/environments/raft_dev_cuda11.2.yml @@ -15,8 +15,8 @@ dependencies: - clang-tools=11.1.0 - cython>=0.29,<0.30 - cmake>=3.23.1 -- dask>=2022.9.2 -- distributed>=2022.9.2 +- dask==2022.11.0 +- distributed==2022.11.0 - scikit-build>=0.13.1 - rapids-build-env=22.12.* - rapids-notebook-env=22.12.* diff --git a/conda/environments/raft_dev_cuda11.4.yml b/conda/environments/raft_dev_cuda11.4.yml index f2acaed40e..484da12e9c 100644 --- a/conda/environments/raft_dev_cuda11.4.yml +++ b/conda/environments/raft_dev_cuda11.4.yml @@ -15,8 +15,8 @@ dependencies: - clang-tools=11.1.0 - cython>=0.29,<0.30 - cmake>=3.23.1 -- dask>=2022.9.2 -- distributed>=2022.9.2 +- dask==2022.11.0 +- distributed==2022.11.0 - scikit-build>=0.13.1 - rapids-build-env=22.12.* - rapids-notebook-env=22.12.* diff --git a/conda/environments/raft_dev_cuda11.5.yml b/conda/environments/raft_dev_cuda11.5.yml index f106e12959..c448d01241 100644 --- a/conda/environments/raft_dev_cuda11.5.yml +++ b/conda/environments/raft_dev_cuda11.5.yml @@ -15,8 +15,8 @@ dependencies: - clang-tools=11.1.0 - cython>=0.29,<0.30 - cmake>=3.23.1 -- dask>=2022.9.2 -- distributed>=2022.9.2 +- dask==2022.11.0 +- distributed==2022.11.0 - scikit-build>=0.13.1 - rapids-build-env=22.12.* - rapids-notebook-env=22.12.* diff --git a/conda/recipes/raft-dask/meta.yaml b/conda/recipes/raft-dask/meta.yaml index b21a372e00..bbcd818304 100644 --- a/conda/recipes/raft-dask/meta.yaml +++ b/conda/recipes/raft-dask/meta.yaml @@ -51,8 +51,8 @@ requirements: - ucx >={{ ucx_version }} - ucx-py {{ ucx_py_version }} - ucx-proc=*=gpu - - dask>=2022.9.2 - - distributed>=2022.9.2 + - dask==2022.11.0 + - distributed==2022.11.0 - cuda-python >=11.7.1,<12.0 - joblib >=0.11 - {{ pin_compatible('cudatoolkit', max_pin='x', min_pin='x') }}