Show python and pip versions in log 26/62926/2
authorLott, Christopher (cl778h) <cl778h@att.com>
Fri, 24 Jan 2020 00:25:57 +0000 (19:25 -0500)
committerLott, Christopher (cl778h) <cl778h@att.com>
Fri, 24 Jan 2020 01:51:17 +0000 (20:51 -0500)
Extend shell scripts that invoke pip freeze to show
python and pip versions also.

Change-Id: I75fff4d379a7cbd27aa867c2cae4f2fd2dde2c31
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
releasenotes/notes/python-pip-versions-8435879c369a9d9c.yaml [new file with mode: 0644]
shell/jjb-install.sh
shell/node-install.sh
shell/python-tools-install.sh
shell/tox-install.sh

diff --git a/releasenotes/notes/python-pip-versions-8435879c369a9d9c.yaml b/releasenotes/notes/python-pip-versions-8435879c369a9d9c.yaml
new file mode 100644 (file)
index 0000000..97b3633
--- /dev/null
@@ -0,0 +1,5 @@
+---
+fixes:
+  - |
+    Extend shell scripts that invoke pip freeze to show
+    python and pip versions also
index baaa5d7..d0c0e4a 100644 (file)
@@ -24,5 +24,7 @@ echo "JJB_VENV=$JJB_VENV" > "$WORKSPACE/.jjb.properties"
 source "$JJB_VENV/bin/activate"
 python -m pip install --quiet --upgrade "jenkins-job-builder==$JJB_VERSION"
 
-echo "----> pip freeze"
+# installs are silent, show version details in log
+python --version
+pip --version
 pip freeze
index da6cfe4..7200ea3 100644 (file)
@@ -20,5 +20,7 @@ source "/tmp/v/python/bin/activate"
 pip install --quiet --upgrade "pip==9.0.3" setuptools
 pip install --quiet --upgrade nodeenv
 
-echo "----> pip freeze"
+# installs are silent, show version details in log
+python --version
+pip --version
 pip freeze
index 2b2b0f8..3a852d3 100644 (file)
@@ -38,6 +38,8 @@ EOF
     python3 -m pip install --user --quiet --no-warn-script-location --upgrade setuptools
     python3 -m pip install --user --quiet --no-warn-script-location --upgrade --upgrade-strategy eager -r "$requirements_file"
     # installs are silent, show version details in log
+    python3 --version
+    python3 -m pip --version
     python3 -m pip freeze
     rm -rf "$requirements_file"
     touch /tmp/pre-build-complete
index f8472cc..cc815cc 100644 (file)
@@ -16,12 +16,13 @@ set -eux -o pipefail
 
 # Tox version is pulled in through detox to mitigate version conflict
 
-
 if [[ $PYTHON == "python2" ]]; then
     $PYTHON -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0
 else
     $PYTHON -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv
 fi
 
-
+# installs are silent, show version details in log
+$PYTHON --version
+$PYTHON -m pip --version
 $PYTHON -m pip freeze