From 5e6d8e603f524c73f185d3c211f22b59ae15d2eb Mon Sep 17 00:00:00 2001 From: "Richard (Rick) Zamora" Date: Tue, 13 Aug 2024 14:49:04 -0700 Subject: [PATCH] Unpin dask and distributed for 24.10 development (#58) Unpins dask and distributed for 24.10 development. ~**Blocked by https://github.com/rapidsai/build-planning/issues/88** (Dask no longer supports Python 3.9. Therefore, unpinning too early is a "breaking" change).~ Other Blockers: - [x] https://github.com/rapidsai/cudf/pull/16535 - [x] https://github.com/dask/dask-expr/pull/1122 Authors: - Richard (Rick) Zamora (https://github.com/rjzamora) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) URL: https://github.com/rapidsai/rapids-dask-dependency/pull/58 --- conda/recipes/rapids-dask-dependency/meta.yaml | 6 +++--- pyproject.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index 5806c50..b44c8f4 100644 --- a/conda/recipes/rapids-dask-dependency/meta.yaml +++ b/conda/recipes/rapids-dask-dependency/meta.yaml @@ -28,9 +28,9 @@ requirements: - setuptools - conda-verify run: - - dask ==2024.7.1 - - dask-core ==2024.7.1 - - distributed ==2024.7.1 + - dask >=2024.7.1 + - dask-core >=2024.7.1 + - distributed >=2024.7.1 - dask-expr about: diff --git a/pyproject.toml b/pyproject.toml index f41f785..744841d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,9 @@ name = "rapids-dask-dependency" version = "24.10.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask==2024.7.1", - "distributed==2024.7.1", - "dask-expr", + "dask @ git+https://github.com/dask/dask.git@main", + "distributed @ git+https://github.com/dask/distributed.git@main", + "dask-expr @ git+https://github.com/dask/dask-expr.git@main", ] license = { text = "Apache 2.0" } readme = { file = "README.md", content-type = "text/markdown" }