Use https to fetch dependencies from github

This commit is contained in:
Victor Zverovich 2016-12-29 10:44:02 -08:00
parent db780cb119
commit 02553d13a0

View File

@ -19,7 +19,7 @@ def pip_install(package, commit=None, **kwargs):
except DistributionNotFound: except DistributionNotFound:
pass pass
if commit: 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)) print('Installing {0}'.format(package))
check_call(['pip', 'install', package]) check_call(['pip', 'install', package])