diff options
author | Erik Johnston <erik@matrix.org> | 2015-09-04 08:56:23 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-09-04 08:56:23 +0100 |
commit | 227b77409ffc1286ac3c8e44a55d54b72654f5c5 (patch) | |
tree | cccc64d92d897d7c230010dd7ceb27f9dfe1f855 | |
parent | Merge branch 'release-v0.10.0' (diff) | |
download | synapse-227b77409ffc1286ac3c8e44a55d54b72654f5c5.tar.xz |
DEPENDENCY_LINKS was turned to a list
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py index 16ccc0f1b8..60ab8c7893 100755 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ setup( "setuptools_trial", "mock" ], - dependency_links=dependencies["DEPENDENCY_LINKS"], + dependency_links=dependencies["DEPENDENCY_LINKS"].values(), include_package_data=True, zip_safe=False, long_description=long_description, |