From 724e1c61fcc08be3b0bbe4f600f715de1b3a914a Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 5 Apr 2023 15:14:57 -0500 Subject: [PATCH] Pin `dask` and `distributed` for release (#1153) This PR pins `dask` and `distributed` to `2023.3.2` and `2023.3.2.1` respectively for `23.04` release. xref: https://github.com/rapidsai/cudf/pull/13070 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Peter Andreas Entschev (https://github.com/pentschev) - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/dask-cuda/pull/1153 --- dependencies.yaml | 5 +++-- pyproject.toml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index 8b0cbf1c7..40a6bd297 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -95,8 +95,9 @@ dependencies: common: - output_types: [conda, requirements] packages: - - dask>=2023.1.1 - - distributed>=2023.1.1 + - dask==2023.3.2 + - dask-core==2023.3.2 + - distributed==2023.3.2.1 - numba>=0.54 - numpy>=1.21 - pandas>=1.3,<1.6.0dev0 diff --git a/pyproject.toml b/pyproject.toml index d606a6fdb..0c4bba805 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,9 @@ authors = [ license = { text = "Apache-2.0" } requires-python = ">=3.8" dependencies = [ - "dask >=2023.1.1", - "distributed >=2023.1.1", + "dask ==2023.3.2", + "dask-core ==2023.3.2", + "distributed ==2023.3.2.1", "pynvml >=11.0.0,<11.5", "numpy >=1.21", "numba >=0.54",