un-pin Twisted, require autobahn >=0.14.1

The new autobahn release removes the Twisted pin, so we no longer need
one. Depend on the new autobahn to flush out any environments that are
still using the old one (and thus can't use the current Twisted).

Thanks https://github.com/crossbario/autobahn-python/issues/680 !
This commit is contained in:
Brian Warner 2016-05-26 12:59:46 -07:00
parent 19702e01ac
commit 2cf11e85d3

View File

@ -25,8 +25,8 @@ setup(name="magic-wormhole",
]}, ]},
install_requires=["spake2==0.7", "pynacl", "argparse", install_requires=["spake2==0.7", "pynacl", "argparse",
"six", "six",
"twisted==16.1.1", # since autobahn pins it "twisted",
"autobahn[twisted]", "autobahn[twisted] >= 0.14.1",
"hkdf", "tqdm", "hkdf", "tqdm",
], ],
extras_require={"tor": ["txtorcon", "ipaddr"]}, extras_require={"tor": ["txtorcon", "ipaddr"]},