update cryptography dep version

github tells me there's a vulnerability <2.3
This commit is contained in:
Noah Levitt 2018-08-16 12:54:30 -07:00
parent 17a5fabb75
commit f8b86a0122

View File

@ -25,13 +25,13 @@ import setuptools
deps = [
'certauth==1.1.6',
'warctools',
'warctools>=4.10.0',
'urlcanon>=0.1.dev16',
'doublethink>=0.2.0.dev87',
'urllib3',
'urllib3>=1.23',
'requests>=2.0.1',
'PySocks',
'cryptography!=2.1.1', # 2.1.1 installation is failing on ubuntu
'PySocks>=1.6.8',
'cryptography>=2.3',
]
try:
import concurrent.futures
@ -40,7 +40,7 @@ except:
setuptools.setup(
name='warcprox',
version='2.4b3.dev181',
version='2.4b3.dev182',
description='WARC writing MITM HTTP/S proxy',
url='https://github.com/internetarchive/warcprox',
author='Noah Levitt',