commit e16f2638a92b2c426d84b3d8cc9c20d4aca04b82 Author: Isis Lovecruft isis@torproject.org Date: Sun Sep 7 00:36:29 2014 +0000
Bump Leekspin to version 1.1.4.
I changed the `leekspin.util.randomIP()` function to only generate "valid" addresses, which prevents us from hitting MalformedPluggableTransport errors more than we normally would with real bridge descriptors. --- .test.requirements.txt | 2 +- .travis.requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.test.requirements.txt b/.test.requirements.txt index 78ad3c0..a06ad14 100644 --- a/.test.requirements.txt +++ b/.test.requirements.txt @@ -6,7 +6,7 @@ # $ make coverage # coverage==3.7.1 -leekspin==1.1.3 +leekspin==1.1.4 mechanize==0.2.5 pep8==1.5.7 # pylint must be pinned until pylint bug #203 is fixed. See diff --git a/.travis.requirements.txt b/.travis.requirements.txt index a298efc..828a09d 100644 --- a/.travis.requirements.txt +++ b/.travis.requirements.txt @@ -15,7 +15,7 @@ #------------------------------------------------------------------------------ coverage==3.7.1 coveralls==0.4.2 -leekspin==1.1.3 +leekspin==1.1.4 mechanize==0.2.5 pep8==1.5.7 # pylint must be pinned until pylint bug #203 is fixed. See diff --git a/setup.py b/setup.py index 1e293bd..5e5de39 100644 --- a/setup.py +++ b/setup.py @@ -286,7 +286,7 @@ setuptools.setup( 'scripts/get-tor-exits'], extras_require={'test': ["sure==1.2.2", "coverage==3.7.1", - "leekspin==1.1.3"]}, + "leekspin==1.1.4"]}, zip_safe=False, cmdclass=get_cmdclass(), include_package_data=True,