From: Frank Brehm Date: Thu, 29 Dec 2022 09:44:41 +0000 (+0100) Subject: Chaning output in gitlab/python-setup-template.yaml X-Git-Tag: v1.0~30 X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=729172bad6c2b465d3097359b1c51860e7cfa0f4;p=pixelpark%2Fpython-packaging.git Chaning output in gitlab/python-setup-template.yaml --- 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