diff --git a/conda_smithy/configure_feedstock.py b/conda_smithy/configure_feedstock.py index 926d7c5aa..12204b540 100644 --- a/conda_smithy/configure_feedstock.py +++ b/conda_smithy/configure_feedstock.py @@ -2620,7 +2620,7 @@ def get_cfp_file_path(temporary_directory): response = requests.get(pkg.url) response.raise_for_status() - with open(dest, "wb", encoding="utf-8") as f: + with open(dest, "wb") as f: f.write(response.content) logger.info("Extracting conda-forge-pinning to %s", temporary_directory)