mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-30 03:14:22 +00:00
We now require PyOpenSSL >= 0.14
This commit is contained in:
parent
cfaa3da25c
commit
d56f7fba80
2
setup.py
2
setup.py
@ -88,5 +88,5 @@ setup(
|
|||||||
"Topic :: Software Development :: Testing :: Traffic Generation",
|
"Topic :: Software Development :: Testing :: Traffic Generation",
|
||||||
"Topic :: Internet :: WWW/HTTP",
|
"Topic :: Internet :: WWW/HTTP",
|
||||||
],
|
],
|
||||||
install_requires=["pyasn1>0.1.2", "pyopenssl>=0.12"],
|
install_requires=["pyasn1>0.1.2", "pyopenssl>=0.14"],
|
||||||
)
|
)
|
||||||
|
@ -477,7 +477,6 @@ class TestFileLike:
|
|||||||
tutils.raises(tcp.NetLibSSLError, s.read, 1)
|
tutils.raises(tcp.NetLibSSLError, s.read, 1)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class TestAddress:
|
class TestAddress:
|
||||||
def test_simple(self):
|
def test_simple(self):
|
||||||
a = tcp.Address("localhost", True)
|
a = tcp.Address("localhost", True)
|
||||||
@ -486,5 +485,3 @@ class TestAddress:
|
|||||||
assert not a == b
|
assert not a == b
|
||||||
c = tcp.Address("localhost", True)
|
c = tcp.Address("localhost", True)
|
||||||
assert a == c
|
assert a == c
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user