From b97b7ccd8cf277df7487f1bb5af1645bbd0eda2e Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Tue, 22 Sep 2015 01:03:43 -0700 Subject: [PATCH] switch to spake2==0.3, with the faster symmetric algorithm Note that this breaks compatibility of SymmetricWormhole, which was previously only used by the Twisted flavor. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8b23c5d..7488beb 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup(name="magic-wormhole", package_data={"wormhole": ["db-schemas/*.sql"]}, entry_points={"console_scripts": ["wormhole = wormhole.scripts.runner:entry"]}, - install_requires=["spake2==0.2", "pynacl", "requests", "argparse"], + install_requires=["spake2==0.3", "pynacl", "requests", "argparse"], test_suite="wormhole.test", cmdclass=commands, )