mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-02-24 00:29:53 -05:00
update cryptography dep version
github tells me there's a vulnerability <2.3
This commit is contained in:
parent
4e398e1da2
commit
ffa8021968
27
setup.py
27
setup.py
@ -32,7 +32,7 @@ def find_package_data(package):
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.4.dev297',
|
version='1.4.dev298',
|
||||||
description='Distributed web crawling with browsers',
|
description='Distributed web crawling with browsers',
|
||||||
url='https://github.com/internetarchive/brozzler',
|
url='https://github.com/internetarchive/brozzler',
|
||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
@ -63,26 +63,29 @@ setuptools.setup(
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'PyYAML',
|
'PyYAML>=3.12',
|
||||||
'youtube-dl',
|
'youtube-dl>=2018.7.21',
|
||||||
'reppy==0.3.4',
|
'reppy==0.3.4',
|
||||||
'requests',
|
'requests>=2.18.4',
|
||||||
'websocket-client!=0.39.0',
|
'websocket-client>=0.39.0,!=0.49.0',
|
||||||
'pillow>=5.2.0',
|
'pillow>=5.2.0',
|
||||||
'urlcanon>=0.1.dev23',
|
'urlcanon>=0.1.dev23',
|
||||||
'doublethink>=0.2.0.dev88',
|
'doublethink>=0.2.0.dev88',
|
||||||
'rethinkdb>=2.3,<2.4',
|
'rethinkdb>=2.3',
|
||||||
'cerberus==1.0.1',
|
'cerberus>=1.0.1',
|
||||||
'jinja2',
|
'jinja2>=2.10',
|
||||||
'cryptography!=2.1.1', # 2.1.1 installation is failing on ubuntu
|
'cryptography>=2.3',
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'dashboard': ['flask>=0.11', 'gunicorn'],
|
'dashboard': [
|
||||||
|
'flask>=0.11',
|
||||||
|
'gunicorn>=19.8.1'
|
||||||
|
],
|
||||||
'easy': [
|
'easy': [
|
||||||
'warcprox>=2.4b2.dev173',
|
'warcprox>=2.4b2.dev173',
|
||||||
'pywb<2',
|
'pywb>=0.33.2,<2',
|
||||||
'flask>=0.11',
|
'flask>=0.11',
|
||||||
'gunicorn'
|
'gunicorn>=19.8.1'
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user