From f8b86a0122f1179816474f4bb27746ebd062f2a1 Mon Sep 17 00:00:00 2001 From: Noah Levitt Date: Thu, 16 Aug 2018 12:54:30 -0700 Subject: [PATCH] update cryptography dep version github tells me there's a vulnerability <2.3 --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 3add81d..c5da0ee 100755 --- a/setup.py +++ b/setup.py @@ -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',