From 49bf78210fe2361beefd48b74e76f96484b5abd2 Mon Sep 17 00:00:00 2001 From: pmikus Date: Wed, 13 May 2020 06:06:47 +0000 Subject: [PATCH] Infra: PIP installation freeze + Waiting for Docker image to be updated. Then next step I will disable any update attempt. Signed-off-by: pmikus Change-Id: I92d4e27be0537a95473cd723a45e6185b26ce599 --- resources/libraries/bash/function/common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index 8f2e88843e..0782fa689c 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -116,16 +116,16 @@ function activate_virtualenv () { env_dir="${root_path}/env" req_path=${2-$CSIT_DIR/requirements.txt} rm -rf "${env_dir}" || die "Failed to clean previous virtualenv." - pip3 install --upgrade virtualenv || { + pip3 install virtualenv==20.0.20 || { die "Virtualenv package install failed." } - virtualenv --python=$(which python3) "${env_dir}" || { + virtualenv --no-download --python=$(which python3) "${env_dir}" || { die "Virtualenv creation for $(which python3) failed." } set +u source "${env_dir}/bin/activate" || die "Virtualenv activation failed." set -u - pip3 install --upgrade -r "${req_path}" || { + pip3 install -r "${req_path}" || { die "Requirements installation failed." } # Most CSIT Python scripts assume PYTHONPATH is set and exported. -- 2.16.6