From b92845a1dc349161beed3786f79f51378460f15d Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 2 Aug 2023 09:42:28 -0500 Subject: [PATCH] Pin `dask` and `distributed` for `23.08` release (#1214) This PR pins `dask` & `distributed` to `2023.7.1` version for `23.08` release. xref: https://github.com/rapidsai/cudf/pull/13802 Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Ray Douglass (https://github.com/raydouglass) - Peter Andreas Entschev (https://github.com/pentschev) URL: https://github.com/rapidsai/dask-cuda/pull/1214 --- conda/recipes/dask-cuda/meta.yaml | 2 +- dependencies.yaml | 6 +++--- pyproject.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/conda/recipes/dask-cuda/meta.yaml b/conda/recipes/dask-cuda/meta.yaml index 65f260260..05e6c12f2 100644 --- a/conda/recipes/dask-cuda/meta.yaml +++ b/conda/recipes/dask-cuda/meta.yaml @@ -32,7 +32,7 @@ requirements: - tomli run: - python - - dask-core >=2023.5.1 + - dask-core ==2023.7.1 {% for r in data.get("project", {}).get("dependencies", []) %} - {{ r }} {% endfor %} diff --git a/dependencies.yaml b/dependencies.yaml index dd4f77581..961a312dd 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -101,8 +101,8 @@ dependencies: common: - output_types: [conda, requirements] packages: - - dask>=2023.5.1 - - distributed>=2023.5.1 + - dask==2023.7.1 + - distributed==2023.7.1 - numba>=0.57 - numpy>=1.21 - pandas>=1.3,<1.6.0dev0 @@ -110,7 +110,7 @@ dependencies: - zict>=2.0.0 - output_types: [conda] packages: - - dask-core>=2023.5.1 + - dask-core==2023.7.1 test_python: common: - output_types: [conda] diff --git a/pyproject.toml b/pyproject.toml index 7746dfd36..ed3ca9f4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,8 +16,8 @@ authors = [ license = { text = "Apache-2.0" } requires-python = ">=3.9" dependencies = [ - "dask >=2023.5.1", - "distributed >=2023.5.1", + "dask ==2023.7.1", + "distributed ==2023.7.1", "pynvml >=11.0.0,<11.5", "numpy >=1.21", "numba >=0.57",