From 497a832ad920e47ef71608a953ba950430719ce5 Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Thu, 9 Apr 2020 15:54:33 -0400 Subject: [PATCH] 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. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index caa37f16e..17ae09295 100644 --- a/setup.py +++ b/setup.py @@ -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",