From a8fdfecf1c2171889e4ba242c309b4d9f895a8c4 Mon Sep 17 00:00:00 2001 From: Mridul Seth Date: Wed, 11 Sep 2024 13:21:10 +0200 Subject: [PATCH] BUILD: kaleido should be python-kaleido for conda build We should probably change this upstream in the copier template. --- conda/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 8503a907..ebb3ae10 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -35,7 +35,7 @@ test: {# Conda does not allow spaces between package name and version, so remove them #} {% for package in test_dependencies %} - - {% if package == "graphviz" %}python-graphviz{% else %}{{ package|replace(" ", "") }}{% endif %} + - {% if package == "graphviz" %}python-graphviz{% elif package == "kaleido" %}python-kaleido{% else %}{{ package|replace(" ", "") }}{% endif %} {% endfor %}