Replace pipdeptree with pip freeze 99/9999/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Sat, 14 Apr 2018 17:15:07 +0000 (13:15 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Sat, 14 Apr 2018 17:16:43 +0000 (13:16 -0400)
While pipdeptree provides more detailed information it's
dependency with pip seems to break things if we don't
install in the correct order. Let's revert to pip freeze
for now until we have a better way to maintain these debugging
packages.

Issue: RELENG-884
Change-Id: Ib6d3008e2d0e195bc9a01a1c4dd476d92a9deace
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
shell/jjb-install.sh
shell/node-install.sh
shell/tox-install.sh

index 54501b8..9351f48 100644 (file)
@@ -18,8 +18,7 @@ virtualenv "/tmp/v/jjb"
 # shellcheck source=/tmp/v/jjb/bin/activate disable=SC1091
 source "/tmp/v/jjb/bin/activate"
 pip install --quiet --upgrade "pip==9.0.3" setuptools
-pip install --quiet --upgrade pipdeptree
 pip install --quiet --upgrade "jenkins-job-builder==$JJB_VERSION"
 
-echo "----> Pip Dependency Tree"
-pipdeptree
+echo "----> pip freeze"
+pip freeze
index 008b382..da6cfe4 100644 (file)
@@ -18,8 +18,7 @@ virtualenv --quiet "/tmp/v/python"
 # shellcheck source=/tmp/v/node/bin/activate disable=SC1091
 source "/tmp/v/python/bin/activate"
 pip install --quiet --upgrade "pip==9.0.3" setuptools
-pip install --quiet --upgrade pipdeptree
 pip install --quiet --upgrade nodeenv
 
-echo "----> Pip Dependency Tree"
-pipdeptree
+echo "----> pip freeze"
+pip freeze
index 96c0fa3..9e50ead 100644 (file)
@@ -18,8 +18,7 @@ virtualenv --quiet -p "$PYTHON_VERSION" "/tmp/v/tox"
 # shellcheck source=/tmp/v/tox/bin/activate disable=SC1091
 source "/tmp/v/tox/bin/activate"
 pip install --quiet --upgrade "pip==9.0.3" setuptools
-pip install --quiet --upgrade pipdeptree
 pip install --quiet --upgrade argparse detox "tox<3.0.0" tox-pyenv
 
-echo "----> Pip Dependency Tree"
-pipdeptree
+echo "----> pip freeze"
+pip freeze