From 293f372ea44118e2e9217d9ef161ac739dfe2748 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Wed, 5 May 2021 10:17:13 -0400 Subject: [PATCH] Version of Twisted that doesn't break on Python 3 with Windows. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df917eb40..32b7f25d2 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,8 @@ install_requires = [ # an sftp extra in Tahoe-LAFS, there is no point in having one. # * Twisted 19.10 introduces Site.getContentFile which we use to get # temporary upload files placed into a per-node temporary directory. - "Twisted[tls,conch] >= 19.10.0", + # * Twisted 21.2.0 is missing binary wheels for some reason. + "Twisted[tls,conch] >= 19.10.0, != 21.2.0", "PyYAML >= 3.11",