diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-10-20 14:43:37 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-10-20 14:43:37 +0100 |
commit | f0382357cab10b536a1c3029be04367fe20b3864 (patch) | |
tree | b894ff222490d24c4e90ee2b0eb4aaf55552681e /setup.py | |
parent | Add get_json method to 3pid http client. Better logging for errors in 3pid re... (diff) | |
download | synapse-f0382357cab10b536a1c3029be04367fe20b3864.tar.xz |
Use https link to download syutil as not everyone has ssh access to github.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py index 7a7e53af39..cff9466345 100755 --- a/setup.py +++ b/setup.py @@ -41,11 +41,12 @@ setup( "py-bcrypt", ], dependency_links=[ - "git+ssh://git@github.com/matrix-org/syutil.git#egg=syutil-0.0.2", + "https://github.com/matrix-org/syutil/tarball/master#egg=syutil-0.0.2", ], setup_requires=[ "setuptools_trial", - "setuptools>=1.0.0", # Needs setuptools that supports git+ssh. It's not obvious when support for this was introduced. + "setuptools>=1.0.0", # Needs setuptools that supports git+ssh. + # TODO: Do we need this now? we don't use git+ssh. "mock" ], include_package_data=True, |