2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 23:48:24 +00:00

fix(travis): urllib3

This commit is contained in:
Ameya Shenoy 2018-10-18 13:05:29 +05:30
parent c5cea84597
commit 8aa7c2b913
No known key found for this signature in database
GPG Key ID: AC016A555657D0A3

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: