Commit 19f990a9 authored by Victor Zverovich's avatar Victor Zverovich

Use https to fetch dependencies from github

parent bca9de9e
...@@ -19,7 +19,7 @@ def pip_install(package, commit=None, **kwargs): ...@@ -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])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment