From 5cd219a8bd2788f96dabf8ef36b2538f1e4b7655 Mon Sep 17 00:00:00 2001 From: Kartik Singh Date: Wed, 18 Dec 2024 13:24:00 -0800 Subject: [PATCH] Fix dependencies --- lib/VERSION.txt | 2 +- recipe/meta.yaml | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/VERSION.txt b/lib/VERSION.txt index 699c6c6d..0ea3a944 100644 --- a/lib/VERSION.txt +++ b/lib/VERSION.txt @@ -1 +1 @@ -0.1.8 +0.2.0 diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 617610ef..1e0dbe70 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -24,10 +24,17 @@ build: - MSYS2_CMD # [win] requirements: - build: - - cmake host: - python {{ python }} + build: + - cmake {% if not environ.get('SBCL_SRC') %} - sbcl={{ environ.get('CONDA_BUILD_SBCL_VERSION', '2.4.0') }} {% endif %} + run: + - python {{ python }} +{% for package in resolved_packages('build') %} + {% if package.startswith('sbcl') %} + - {{ package }} + {% endif %} +{% endfor %}