From e48a69d9e925caffab3c58ed6f0c881c24a21745 Mon Sep 17 00:00:00 2001 From: "Mike A. Trethewey" Date: Wed, 17 Mar 2021 23:58:20 -0700 Subject: [PATCH] Extrapolate requirements file --- resources/ci/common/install.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/ci/common/install.py b/resources/ci/common/install.py index 0a541742..5874d0dd 100644 --- a/resources/ci/common/install.py +++ b/resources/ci/common/install.py @@ -6,6 +6,8 @@ import subprocess # do stuff at the shell level env = common.prepare_env() +pip_requirements = os.path.join(".","resources","app","meta","manifests","pip_requirements.txt") + def run_install(PY_VERSION,USER): # get executables # python @@ -75,7 +77,7 @@ def run_install(PY_VERSION,USER): "install", "--user", "-r", - "./resources/app/meta/manifests/pip_requirements.txt" + pip_requirements ] if not USER: args.remove("--user")