Compare commits

...

1 Commits

Author SHA1 Message Date
Daira Hopwood 1f2574b9a2 Oops, check_requirement doesn't support ==.
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
2015-07-29 01:04:55 +01:00
1 changed files with 2 additions and 2 deletions

View File

@ -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",
]