diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-03-02 22:14:33 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-03-02 22:14:33 +1300 |
commit | d56f7fba806e6c2008c40df9b0b290b81189cb92 (patch) | |
tree | a6b0bfe7756568efa1b3c8e4517fc40ea51c20f7 | |
parent | cfaa3da25cee39c5395a6ff27dfc47ff07dbeef6 (diff) | |
download | mitmproxy-d56f7fba806e6c2008c40df9b0b290b81189cb92.tar.gz mitmproxy-d56f7fba806e6c2008c40df9b0b290b81189cb92.tar.bz2 mitmproxy-d56f7fba806e6c2008c40df9b0b290b81189cb92.zip |
We now require PyOpenSSL >= 0.14
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | test/test_tcp.py | 3 |
2 files changed, 1 insertions, 4 deletions
@@ -88,5 +88,5 @@ setup( "Topic :: Software Development :: Testing :: Traffic Generation", "Topic :: Internet :: WWW/HTTP", ], - install_requires=["pyasn1>0.1.2", "pyopenssl>=0.12"], + install_requires=["pyasn1>0.1.2", "pyopenssl>=0.14"], ) diff --git a/test/test_tcp.py b/test/test_tcp.py index 387e3f33..d5d11294 100644 --- a/test/test_tcp.py +++ b/test/test_tcp.py @@ -477,7 +477,6 @@ class TestFileLike: tutils.raises(tcp.NetLibSSLError, s.read, 1) - class TestAddress: def test_simple(self): a = tcp.Address("localhost", True) @@ -486,5 +485,3 @@ class TestAddress: assert not a == b c = tcp.Address("localhost", True) assert a == c - - |