From 19efb50a49d5b8aa2f0111377466eeae97152320 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Wed, 22 Jan 2025 12:33:31 -0800 Subject: [PATCH] Template Conda recipe's `requirements/host` (#1425) Pull in build dependencies from `pyproject.toml` into Conda's `meta.yaml`. Authors: - https://github.com/jakirkham Approvers: - Peter Andreas Entschev (https://github.com/pentschev) - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/dask-cuda/pull/1425 --- conda/recipes/dask-cuda/meta.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conda/recipes/dask-cuda/meta.yaml b/conda/recipes/dask-cuda/meta.yaml index 682a2ff0f..77c6186d0 100644 --- a/conda/recipes/dask-cuda/meta.yaml +++ b/conda/recipes/dask-cuda/meta.yaml @@ -29,8 +29,9 @@ requirements: host: - python - pip - - rapids-build-backend>=0.3.0,<0.4.0.dev0 - - setuptools>=64.0.0 + {% for r in data["build-system"]["requires"] %} + - {{ r }} + {% endfor %} run: - python {% for r in data["project"]["dependencies"] %}