From 971b061b9be059cd6f27f89266a9c5e65f4b6af4 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 3 Sep 2024 10:51:52 -0400 Subject: [PATCH] fix(conda): add correct dependencies (#149) --- conda.recipe/meta.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index e0ff66a..d2e5ea5 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -7,7 +7,9 @@ source: build: number: 0 - script: {{ PYTHON }} -m pip install . -vv + script: + - unset CMAKE_GENERATOR && {{ PYTHON }} -m pip install . -vv # [not win] + - {{ PYTHON }} -m pip install . -vv # [win] requirements: build: @@ -15,6 +17,8 @@ requirements: - {{ compiler('cxx') }} host: + - cmake + - ninja - python - pip - scikit-build-core