From b72f0ce934aa48ff691490a534e4a0f6be380fff Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Tue, 24 May 2016 13:14:34 -0700 Subject: [PATCH] INCOMPATIBLE CHANGE: switch to spake2-0.7 This changes the way keys are derived, and thus is incompatible with previous versions. We pin "spake2==0.7" to avoid future surprises. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1f2a3de..d1c239a 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup(name="magic-wormhole", ["wormhole = wormhole.cli.runner:entry", "wormhole-server = wormhole.server.runner:entry", ]}, - install_requires=["spake2==0.3", "pynacl", "argparse", + install_requires=["spake2==0.7", "pynacl", "argparse", "six", "twisted==16.1.1", # since autobahn pins it "autobahn[twisted]",