From 25514b8fce5962eaa46ef006bf3ce75b8999ddf1 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 12 Jun 2024 12:03:04 -0500 Subject: [PATCH] try force-loading in the 'build' section --- conda/recipes/dask-cuda/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/conda/recipes/dask-cuda/meta.yaml b/conda/recipes/dask-cuda/meta.yaml index 91e0445f..fabbbf49 100644 --- a/conda/recipes/dask-cuda/meta.yaml +++ b/conda/recipes/dask-cuda/meta.yaml @@ -21,6 +21,7 @@ build: script: - {{ PYTHON }} -m pip install . -vv entry_points: + {% set data = load_file_data("pyproject.toml") %} {% for entrypoint, callable in data["project"]["scripts"].items() %} - {{ entrypoint ~ ' = ' ~ callable }} {% endfor %}