From d0788e8de118eafbdb17b9d619b4ae92c0a85134 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Thu, 12 Dec 2024 20:14:00 -0800 Subject: [PATCH] Use only one `skip` to make `conda-souschef` happy --- recipe/meta.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 7100bec..1c365cc 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -20,13 +20,12 @@ source: build: number: 2 - {% if not (environ.get("cuda_compiler_version")|string()) == (major_version|string()) %} - skip: true - {% endif %} # `linux_ppc64le` is unsupported by the CUDA Toolkit as of 12.5.0. # So skip building `cuda-python` on `linux_ppc64le` # xref: https://github.com/conda-forge/cuda-feedstock/issues/27 - skip: true # [ppc64le] + {% if ppc64le or not (environ.get("cuda_compiler_version")|string()) == (major_version|string()) %} + skip: true + {% endif %} script: - pushd cuda_bindings - {{ PYTHON }} -m pip install . --no-deps -vv