Use Twisted < 20.0.0

Twisted 20.3.0 has dropped Python 2.7 support, so we need to stick to
the prior release as long as we use Python 2.7.
This commit is contained in:
Sajith Sasidharan 2020-04-09 15:54:33 -04:00
parent a14cee5cce
commit 497a832ad9

View File

@ -98,7 +98,7 @@ install_requires = [
# `pip install tahoe-lafs[sftp]` would not install requirements
# specified by Twisted[conch]. Since this would be the *whole point* of
# an sftp extra in Tahoe-LAFS, there is no point in having one.
"Twisted[tls,conch] >= 18.4.0",
"Twisted[tls,conch] >= 18.4.0, < 20.0.0",
# We need Nevow >= 0.11.1 which can be installed using pip.
"Nevow >= 0.11.1",