diff --git a/conda/recipes/rapids-dask-dependency/meta.yaml b/conda/recipes/rapids-dask-dependency/meta.yaml index 71b75c6..e23472b 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 >=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" }