Travis: cope with setuptools upgrade failing

This commit is contained in:
Andrew Tridgell 2015-02-11 21:18:35 +11:00
parent 604742ac0e
commit f69622f041

View File

@ -29,7 +29,9 @@ APT_GET="sudo apt-get -qq --assume-yes"
$APT_GET update
$APT_GET install $BASE_PKGS $SITL_PKGS $PX4_PKGS $UBUNTU64_PKGS $AVR_PKGS
pip install --upgrade setuptools
pip install --upgrade setuptools || {
echo "setuptools upgrade failed"
}
for pkg in $PYTHON_PKGS; do
echo "Installing $pkg"
pip -q install $pkg || echo "FAILED INSTALL OF $pkg"