From 3ca1b8be71884e7a7f893cb1dd4da308965e522d Mon Sep 17 00:00:00 2001 From: "Richard (Rick) Zamora" Date: Thu, 28 Nov 2024 01:22:38 -0600 Subject: [PATCH] Unpin dask for 25.02 development (#72) Unpins the `dask`, `dask-expr`, and `distributed` versions for 25.02 development. Depends on https://github.com/rapidsai/cudf/pull/17439 (**Update**: Now merged). Authors: - Richard (Rick) Zamora (https://github.com/rjzamora) Approvers: - Peter Andreas Entschev (https://github.com/pentschev) URL: https://github.com/rapidsai/rapids-dask-dependency/pull/72 --- conda/recipes/rapids-dask-dependency/meta.yaml | 8 ++++---- pyproject.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index 4b8ca07..c3b2bfd 100644 --- a/conda/recipes/rapids-dask-dependency/meta.yaml +++ b/conda/recipes/rapids-dask-dependency/meta.yaml @@ -28,10 +28,10 @@ requirements: - setuptools - conda-verify run: - - dask ==2024.11.2 - - dask-core ==2024.11.2 - - distributed ==2024.11.2 - - dask-expr ==1.1.19 + - dask >=2024.11.2 + - dask-core >=2024.11.2 + - distributed >=2024.11.2 + - dask-expr >=1.1.19 about: home: https://rapids.ai/ diff --git a/pyproject.toml b/pyproject.toml index 234aa74..7a53bab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,9 @@ name = "rapids-dask-dependency" version = "25.02.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask==2024.11.2", - "distributed==2024.11.2", - "dask-expr==1.1.19", + "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" }