diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-31 12:15:44 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-31 20:03:25 +0100 |
commit | 280b491ab2b743f75483e2916e5344b22d4136e1 (patch) | |
tree | 8fd4aaa0934ec9abe21d2a652857fbd77fd131a7 /setup.py | |
parent | d253ebc142d80708a1bdc065d3db05d1394e3819 (diff) | |
download | mitmproxy-280b491ab2b743f75483e2916e5344b22d4136e1.tar.gz mitmproxy-280b491ab2b743f75483e2916e5344b22d4136e1.tar.bz2 mitmproxy-280b491ab2b743f75483e2916e5344b22d4136e1.zip |
migrate to hyperframe
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -17,11 +17,12 @@ with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f: deps = { "pyasn1>=0.1.9, <0.2", "pyOpenSSL>=0.15.1, <0.16", - "cryptography>=1.2.1, <1.3", + "cryptography>=1.2.2, <1.3", "passlib>=1.6.5, <1.7", - "hpack>=2.0.1, <2.1", + "hpack>=2.0.1, <3.0", + "hyperframe>=3.1.1, <4.0", "six>=1.10.0, <1.11", - "certifi>=2015.9.6.2", # no semver here - this should always be on the last release! + "certifi>=2015.11.20.1", # no semver here - this should always be on the last release! "backports.ssl_match_hostname>=3.5.0.1, <3.6", } if sys.version_info < (3, 0): |