2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 00:06:36 +00:00

Merge pull request #727 from codingCoffee/urllib3

fix(travis): urllib3
This commit is contained in:
Ameya Shenoy 2018-10-18 13:20:58 +05:30 committed by GitHub
commit cbc01e6486
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ def install_bench(args):
# secure pip installation
if find_executable('pip'):
run_os_command({
'pip': 'sudo pip install --upgrade setuptools urllib3 cryptography pip'
'pip': 'sudo pip install --upgrade setuptools cryptography pip'
})
else:
@ -51,11 +51,11 @@ def install_bench(args):
if success:
run_os_command({
'pip': 'sudo pip install --upgrade setuptools urllib3 requests cryptography pip'
'pip': 'sudo pip install --upgrade setuptools requests cryptography pip'
})
success = run_os_command({
'pip': "sudo pip install --upgrade urllib3 cryptography ansible"
'pip': "sudo pip install --upgrade cryptography ansible"
})
if not success: