From 1f51c4fa564b8a17cc0e8cddbcd9ed8d3a888f9e Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 5 Apr 2023 18:52:12 -0500 Subject: [PATCH] Rectify `dask-core` pinning in pip requirements (#1155) As part of https://github.com/rapidsai/dask-cuda/pull/1153 `dask-core` has been added to pip requirements, which is incorrect. This PR rectifies this issue. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/dask-cuda/pull/1155 --- conda/recipes/dask-cuda/meta.yaml | 1 + dependencies.yaml | 4 +++- pyproject.toml | 1 - 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/conda/recipes/dask-cuda/meta.yaml b/conda/recipes/dask-cuda/meta.yaml index 8d233d4e..42988822 100644 --- a/conda/recipes/dask-cuda/meta.yaml +++ b/conda/recipes/dask-cuda/meta.yaml @@ -33,6 +33,7 @@ requirements: - versioneer >=0.24 run: - python + - dask-core ==2023.3.2 {% for r in data.get("project", {}).get("dependencies", []) %} - {{ r }} {% endfor %} diff --git a/dependencies.yaml b/dependencies.yaml index 40a6bd29..b484afb5 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -96,13 +96,15 @@ dependencies: - output_types: [conda, requirements] packages: - dask==2023.3.2 - - dask-core==2023.3.2 - distributed==2023.3.2.1 - numba>=0.54 - numpy>=1.21 - pandas>=1.3,<1.6.0dev0 - pynvml>=11.0.0,<11.5 - zict>=0.1.3 + - output_types: [conda] + packages: + - dask-core==2023.3.2 test_python: common: - output_types: [conda] diff --git a/pyproject.toml b/pyproject.toml index 0c4bba80..6377693b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,6 @@ license = { text = "Apache-2.0" } requires-python = ">=3.8" dependencies = [ "dask ==2023.3.2", - "dask-core ==2023.3.2", "distributed ==2023.3.2.1", "pynvml >=11.0.0,<11.5", "numpy >=1.21",