From 41e4cd18ce5351394958e0d9ec4880db1a102a46 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Sat, 28 Feb 2026 18:06:16 +0100 Subject: [PATCH] [arm_variant_type] Only expand arm_variant_type if defined Without this fix, defining touch_arm_variant_type as suggested results in a re-rendering failure --- recipe/migrations/arm_variant_type.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/migrations/arm_variant_type.yaml b/recipe/migrations/arm_variant_type.yaml index 675b6165df..218593f08e 100644 --- a/recipe/migrations/arm_variant_type.yaml +++ b/recipe/migrations/arm_variant_type.yaml @@ -52,7 +52,7 @@ __migrator: ```yaml context: # ensure arm_variant_type gets detected as a used variable - touch_arm_variant_type: ${{ arm_variant_type }} + touch_arm_variant_type: ${{ arm_variant_type if (linux and aarch64 and cuda_compiler_version != "None") else "None" }} ``` Please read the conda-forge CUDA recipe guide for more information: