Use https to fetch dependencies from github

This commit is contained in:
Victor Zverovich 2018-01-27 09:15:28 -08:00
parent bca9de9e68
commit 19f990a9c0

View File

@ -19,7 +19,7 @@ def pip_install(package, commit=None, **kwargs):
except DistributionNotFound:
pass
if commit:
package = 'git+git://github.com/{0}.git@{1}'.format(package, commit)
package = 'git+https://github.com/{0}.git@{1}'.format(package, commit)
print('Installing {0}'.format(package))
check_call(['pip', 'install', package])