From c7cf7c3956bfb6bcf7a4590e941d8888f2587e72 Mon Sep 17 00:00:00 2001 From: tpltnt Date: Sun, 31 Dec 2017 14:59:14 +0100 Subject: [PATCH] make twisted >= 16.4.0 a requirement --- src/allmydata/_auto_deps.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py index 20740acb8..4f9b04828 100644 --- a/src/allmydata/_auto_deps.py +++ b/src/allmydata/_auto_deps.py @@ -73,7 +73,9 @@ install_requires = [ # * Twisted-16.1.0 fixes https://twistedmatrix.com/trac/ticket/8223, # which otherwise causes test_system to fail (DirtyReactorError, due to # leftover timers) - "Twisted[tls] >= 16.1.0", + # * Twisted-16.4.0 instroduces twisted.trial which is needed for coverage + # testing + "Twisted[tls] >= 16.4.0", # We need Nevow >= 0.11.1 which can be installed using pip. "Nevow >= 0.11.1",