From 792f88d918e3c43b30a64d16821abce6db13fbf7 Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Mon, 18 Mar 2024 16:20:06 -0400 Subject: [PATCH] Do not install requirements as part of the action Remove workaround for --- action/deploy_recipe.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/action/deploy_recipe.py b/action/deploy_recipe.py index b1bba6e..85bb08f 100644 --- a/action/deploy_recipe.py +++ b/action/deploy_recipe.py @@ -109,13 +109,6 @@ def main(): if "BaseCommand" in config and "feedstock_subdir" in config["BaseCommand"] else "feedstock" ) - # because we've run the actions/checkout step before reaching this point, our current - # working directory is the root of the feedstock repo, so we can list feedstock repo - # contents directly on the filesystem here, without requesting it from github. - if "requirements.txt" in os.listdir(feedstock_subdir): - call_subprocess_run( - f"python3 -m pip install -Ur {feedstock_subdir}/requirements.txt".split() - ) with tempfile.NamedTemporaryFile("w", suffix=".json") as f: json.dump(config, f)