From b75e4b64c632c5ddae2f7f2e2591fd96d5da96a1 Mon Sep 17 00:00:00 2001 From: Pierre Tardy Date: Fri, 14 Aug 2015 20:15:04 +0200 Subject: [PATCH] synchronize the twisted dependancies with Autobahn As per https://github.com/tavendo/AutobahnPython/issues/443 Autobahn is only fully supporting Twisted 12.1. (a few tests fail on 11.1) I am proposing to use the same minimum version for consistancy. Signed-off-by: Pierre Tardy --- master/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/setup.py b/master/setup.py index 07ca81d23d1..30b8ec22cb7 100755 --- a/master/setup.py +++ b/master/setup.py @@ -388,7 +388,7 @@ def define_plugin_entries(groups): else: # dependencies setup_args['install_requires'] = [ - 'twisted >= 11.0.0', + 'twisted >= 12.1.0', 'Jinja2 >= 2.1', 'zope.interface >= 4.1.1', # required for tests, but Twisted requires this anyway 'future'