From c8699334adb7fc8d7a2db6808b0ed0045e33ee8e Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Wed, 20 Nov 2024 12:20:15 +1100 Subject: [PATCH] ensure install_atl does not appear in rendered `.azure-pipelines/azure-pipelines-win.yml` --- conda_smithy/configure_feedstock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conda_smithy/configure_feedstock.py b/conda_smithy/configure_feedstock.py index 328f80ba4..6998aef19 100644 --- a/conda_smithy/configure_feedstock.py +++ b/conda_smithy/configure_feedstock.py @@ -1837,6 +1837,7 @@ def _azure_specific_setup(jinja_env, forge_config, forge_dir, platform): azure_settings = deepcopy(forge_config["azure"][f"settings_{platform}"]) azure_settings.pop("swapfile_size", None) + azure_settings.pop("install_atl", None) azure_settings.setdefault("strategy", {}) azure_settings["strategy"].setdefault("matrix", {})