From 64307d3531f46ef1249ad7096c2fe2158ab58825 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Wed, 7 Dec 2016 22:13:40 -0800 Subject: [PATCH] setup.py: require twisted[tls] to hush service-identity warning Thanks to @grempe for the catch. Closes #89. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d945d6c..574aa4a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup(name="magic-wormhole", install_requires=[ "spake2==0.7", "pynacl", "six", - "twisted", + "twisted[tls]", "autobahn[twisted] >= 0.14.1", "hkdf", "tqdm", "click",