Skip to content

Commit

Permalink
Use pip 6.1.1
Browse files Browse the repository at this point in the history
because buildbot-slave installation is broken in pip 7.0.0:
pypa/pip#2996
  • Loading branch information
vitaut committed Jul 30, 2015
1 parent 3145062 commit 88c9437
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions support/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,9 @@ def pip_install(package, test_module=None):
if not module_exists('pip'):
with download('https://bootstrap.pypa.io/get-pip.py') as f:
check_call(['python', f])
# Install pip 6.1.1 because buildbot-slave installation is broken in pip 7.0.0:
# https://github.com/pypa/pip/issues/2996
check_call(['pip', 'install', 'pip==6.1.1'])
# Install the package.
print('Installing', package)
check_call(['pip', 'install', package])
Expand Down

0 comments on commit 88c9437

Please sign in to comment.