From 729172bad6c2b465d3097359b1c51860e7cfa0f4 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Thu, 29 Dec 2022 10:44:41 +0100 Subject: [PATCH] Chaning output in gitlab/python-setup-template.yaml --- gitlab/python-setup-template.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gitlab/python-setup-template.yaml b/gitlab/python-setup-template.yaml index 3252071..575d972 100644 --- a/gitlab/python-setup-template.yaml +++ b/gitlab/python-setup-template.yaml @@ -27,17 +27,19 @@ - pip install --upgrade pip - > if [[ -n "${UPDATE_ALL_PIP_MODULES}" && "${UPDATE_ALL_PIP_MODULES}" == "y" ]] ; then - echo + echo ' ' echo "Updating all outdated PIP modules." for module in $( pip list --outdated | awk '{if(NR>=3) print $1}' ); do - echo + echo ' ' echo "Updating module '${module}' ..." pip install --upgrade "${module}" done - echo + echo ' ' fi - > if [[ -r requirements.txt ]] ; then + echo ' ' + echo "Installing all required PIP modules." pip install -r requirements.txt --upgrade --upgrade-strategy eager fi -- 2.39.5