Install the latest version of setuptools

When trying to install bifrost on CentOS , shade could not be
installed properly, because the system had an old version of
setuptools. Add this upgrade to install-deps, to have the latest
version of it.

Closes-Bug: #1695969

Change-Id: I31e2d3af04eb6fa74a03e7fa731f58dbb30bd3bc
This commit is contained in:
Yolanda Robla 2017-09-19 12:06:26 +02:00 committed by yolanda.robla
parent d99769b5a9
commit b6a61445c1
1 changed files with 3 additions and 0 deletions

View File

@ -172,3 +172,6 @@ sudo -H -E ${PIP} install bindep
# bindep returns 1 if packages are missing
bindep -b &> /dev/null || ${INSTALLER_CMD} $(bindep -b)
# upgrade setuptools, as latest version is needed to install some projects
sudo -H -E ${PIP} install --upgrade setuptools