From 5520d8c91b065c4348432b1a4a82dffde6518156 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Tue, 15 Feb 2022 02:42:52 -0800 Subject: [PATCH] Drop `defaults` from `channel_sources` This is already effectively dropped in conda-forge-pinning. The value here is a fallback. Nevertheless it is good to be consistent here to avoid confusion. So this matches what is in conda-forge-pinning. --- conda_smithy/configure_feedstock.py | 2 +- news/drop_defaults_channel_sources.rst | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 news/drop_defaults_channel_sources.rst diff --git a/conda_smithy/configure_feedstock.py b/conda_smithy/configure_feedstock.py index 42c7b61b3..2399b4b9e 100644 --- a/conda_smithy/configure_feedstock.py +++ b/conda_smithy/configure_feedstock.py @@ -1729,7 +1729,7 @@ def _load_forge_config(forge_dir, exclusive_config_file, forge_yml=None): "min_r_ver": "34", "max_r_ver": "34", "channels": { - "sources": ["conda-forge", "defaults"], + "sources": ["conda-forge"], "targets": [["conda-forge", "main"]], }, "github": { diff --git a/news/drop_defaults_channel_sources.rst b/news/drop_defaults_channel_sources.rst new file mode 100644 index 000000000..06ad9a14c --- /dev/null +++ b/news/drop_defaults_channel_sources.rst @@ -0,0 +1,23 @@ +**Added:** + +* + +**Changed:** + +* Drop ``defaults`` from ``channel_sources`` + +**Deprecated:** + +* + +**Removed:** + +* + +**Fixed:** + +* + +**Security:** + +*