From 1f2574b9a261f99a707daeeea1871015c65d080f Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Wed, 29 Jul 2015 01:04:55 +0100 Subject: [PATCH] Oops, check_requirement doesn't support ==. Signed-off-by: Daira Hopwood --- src/allmydata/_auto_deps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py index b6f70bf2..7a9af786 100644 --- a/src/allmydata/_auto_deps.py +++ b/src/allmydata/_auto_deps.py @@ -146,14 +146,14 @@ if sys.platform == "win32": if _use_old_Twisted_and_Nevow: install_requires += [ - "Twisted >= 11.1.0, <= 12.1.0", + "Twisted >= 15.3.0pre1", "Nevow >= 0.9.33, <= 0.10", ] setup_requires += [req for req in install_requires if req.startswith('Twisted') or req.startswith('zope.interface')] else: install_requires += [ - "Twisted >= 13.0.0", + "Twisted >= 15.3.0pre1", "Nevow >= 0.11.1", ] -- 2.45.2