Skip to content

Commit 34916b6

Browse files
Add safeguards for undefined variables for conda-smithy
1 parent 8d817eb commit 34916b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

recipe/recipe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ context:
1010
bindings_patch_version: ${{ (version | split("."))[2] | int }}
1111
target_name: ${{ "sbsa-linux" if aarch64 else 'x86_64-linux' if linux else "x64" if win else "" }}
1212
subdir: ${{ "targets/" ~ target_name if aarch64 or linux else "Library\\" if win else "" }}
13-
touch_is_freethreading: ${{ is_freethreading }}
13+
touch_is_freethreading: ${{ is_freethreading if is_freethreading is defined else False }}
1414

1515
recipe:
1616
name: cuda-python-split

0 commit comments

Comments
 (0)