From ddca91c98efb9d4b7448acc961ebaac486df747d Mon Sep 17 00:00:00 2001 From: "Matthew R. Becker" Date: Sat, 16 Nov 2024 13:33:12 -0600 Subject: [PATCH 1/2] fix: need the path for pinning file --- conda_smithy/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_smithy/github.py b/conda_smithy/github.py index f3b6d20b2..df987a334 100644 --- a/conda_smithy/github.py +++ b/conda_smithy/github.py @@ -156,7 +156,7 @@ def create_github_repo(args): args.feedstock_directory, forge_config, conda_forge_pinning_file=( - get_cached_cfp_file_path(".") + get_cached_cfp_file_path(".")[0] if args.user is None and args.organization == "conda-forge" else None ), From 454c1c16731d29c25fc38b022faa235bedb1beb3 Mon Sep 17 00:00:00 2001 From: "Matthew R. Becker" Date: Sat, 16 Nov 2024 13:34:12 -0600 Subject: [PATCH 2/2] doc: add news --- news/noarch_create_feedstocks.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/news/noarch_create_feedstocks.rst b/news/noarch_create_feedstocks.rst index f48c05317..ac3bb0689 100644 --- a/news/noarch_create_feedstocks.rst +++ b/news/noarch_create_feedstocks.rst @@ -16,7 +16,7 @@ **Fixed:** -* Fixed a bug where creating feedstocks with `noarch: python` would not work correctly. (#2135) +* Fixed a bug where creating feedstocks with `noarch: python` would not work correctly. (#2135. #2138) **Security:**