Skip to content
Snippets Groups Projects
Commit 64cf1483 authored by David Baker's avatar David Baker
Browse files

D'oh - setup.py used the dict directly: make it use the wrapper function.

parent d028207a
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ setup(
version=version,
packages=find_packages(exclude=["tests", "tests.*"]),
description="Reference Synapse Home Server",
install_requires=dependencies["REQUIREMENTS"].keys(),
install_requires=dependencies['requirements'](include_conditional=True).keys(),
setup_requires=[
"Twisted==14.0.2", # Here to override setuptools_trial's dependency on Twisted>=2.4.0
"setuptools_trial",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment