Check if pip is updated

This commit is contained in:
vitaut 2015-10-15 06:41:16 -07:00
parent e61f4d2bf6
commit e854c7d47e

View File

@ -28,6 +28,7 @@ def build_docs():
# Upgrade pip because installation of sphinx with pip 1.1 available on Travis # Upgrade pip because installation of sphinx with pip 1.1 available on Travis
# is broken (see #207) and it doesn't support the show command. # is broken (see #207) and it doesn't support the show command.
if LooseVersion(pip.__version__) < LooseVersion('1.5.4'): if LooseVersion(pip.__version__) < LooseVersion('1.5.4'):
print("Updating pip")
check_call(['pip', 'install', '--upgrade', 'pip==1.5.4']) check_call(['pip', 'install', '--upgrade', 'pip==1.5.4'])
# Install Sphinx and Breathe. # Install Sphinx and Breathe.
pip_install('sphinx-doc/sphinx', pip_install('sphinx-doc/sphinx',