diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index d22742b..55d440a 100644 --- a/conda/recipes/rapids-dask-dependency/meta.yaml +++ b/conda/recipes/rapids-dask-dependency/meta.yaml @@ -27,9 +27,9 @@ requirements: - python >=3.9 - setuptools run: - - dask >=2025.1.0 - - dask-core >=2025.1.0 - - distributed >=2025.1.0 + - dask ==2025.2.0 + - dask-core ==2025.2.0 + - distributed ==2025.2.0 about: home: https://rapids.ai/ diff --git a/pyproject.toml b/pyproject.toml index 6586fb4..027398c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,8 +12,8 @@ name = "rapids-dask-dependency" version = "25.04.00a0" description = "Dask and Distributed version pinning for RAPIDS" dependencies = [ - "dask @ git+https://github.com/dask/dask.git@main", - "distributed @ git+https://github.com/dask/distributed.git@main", + "dask==2025.2.0", + "distributed==2025.2.0", ] license = { text = "Apache 2.0" } readme = { file = "README.md", content-type = "text/markdown" }