From: Daira Hopwood Date: Wed, 29 Jul 2015 00:04:55 +0000 (+0100) Subject: Oops, check_requirement doesn't support ==. X-Git-Url: https://git.rkrishnan.org/provisioning?a=commitdiff_plain;h=refs%2Fheads%2Ftest-twisted-15.3.0pre1;p=tahoe-lafs%2Ftahoe-lafs.git Oops, check_requirement doesn't support ==. Signed-off-by: Daira Hopwood --- 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", ]