updating dependencies
This commit is contained in:
parent
8199365324
commit
42e5470dd0
|
@ -8,20 +8,20 @@ Flask==0.10.1
|
||||||
Flask-RESTful==0.3.3
|
Flask-RESTful==0.3.3
|
||||||
Flask-SQLAlchemy==2.1
|
Flask-SQLAlchemy==2.1
|
||||||
Flask-Script==2.0.5
|
Flask-Script==2.0.5
|
||||||
Flask-Migrate==1.6.0
|
Flask-Migrate==1.7.0
|
||||||
Flask-Bcrypt==0.7.1
|
Flask-Bcrypt==0.7.1
|
||||||
Flask-Principal==0.4.0
|
Flask-Principal==0.4.0
|
||||||
Flask-Mail==0.9.1
|
Flask-Mail==0.9.1
|
||||||
SQLAlchemy-Utils==0.31.3
|
SQLAlchemy-Utils==0.31.4
|
||||||
BeautifulSoup4
|
BeautifulSoup4
|
||||||
requests==2.8.1
|
requests==2.9.1
|
||||||
psycopg2==2.6.1
|
psycopg2==2.6.1
|
||||||
arrow==0.7.0
|
arrow==0.7.0
|
||||||
boto==2.38.0 # we might make this optional
|
boto==2.38.0 # we might make this optional
|
||||||
six==1.10.0
|
six==1.10.0
|
||||||
gunicorn==19.4.1
|
gunicorn==19.4.4
|
||||||
pycrypto==2.6.1
|
pycrypto==2.6.1
|
||||||
cryptography==1.1.1
|
cryptography==1.1.2
|
||||||
pyopenssl==0.15.1
|
pyopenssl==0.15.1
|
||||||
pyjwt==1.4.0
|
pyjwt==1.4.0
|
||||||
xmltodict==0.9.2
|
xmltodict==0.9.2
|
||||||
|
|
14
setup.py
14
setup.py
|
@ -38,20 +38,20 @@ install_requires = [
|
||||||
'Flask-RESTful==0.3.3',
|
'Flask-RESTful==0.3.3',
|
||||||
'Flask-SQLAlchemy==2.1',
|
'Flask-SQLAlchemy==2.1',
|
||||||
'Flask-Script==2.0.5',
|
'Flask-Script==2.0.5',
|
||||||
'Flask-Migrate==1.6.0',
|
'Flask-Migrate==1.7.0',
|
||||||
'Flask-Bcrypt==0.7.1',
|
'Flask-Bcrypt==0.7.1',
|
||||||
'Flask-Principal==0.4.0',
|
'Flask-Principal==0.4.0',
|
||||||
'Flask-Mail==0.9.1',
|
'Flask-Mail==0.9.1',
|
||||||
'SQLAlchemy-Utils==0.31.3',
|
'SQLAlchemy-Utils==0.31.4',
|
||||||
'BeautifulSoup4==4.4.1',
|
'BeautifulSoup4==4.4.1',
|
||||||
'requests==2.8.1',
|
'requests==2.9.1',
|
||||||
'psycopg2==2.6.1',
|
'psycopg2==2.6.1',
|
||||||
'arrow==0.7.0',
|
'arrow==0.7.0',
|
||||||
'boto==2.38.0', # we might make this optional
|
'boto==2.38.0', # we might make this optional
|
||||||
'six==1.10.0',
|
'six==1.10.0',
|
||||||
'gunicorn==19.4.1',
|
'gunicorn==19.4.4',
|
||||||
'pycrypto==2.6.1',
|
'pycrypto==2.6.1',
|
||||||
'cryptography==1.1.1',
|
'cryptography==1.1.2',
|
||||||
'pyopenssl==0.15.1',
|
'pyopenssl==0.15.1',
|
||||||
'pyjwt==1.4.0',
|
'pyjwt==1.4.0',
|
||||||
'xmltodict==0.9.2',
|
'xmltodict==0.9.2',
|
||||||
|
@ -61,9 +61,9 @@ install_requires = [
|
||||||
|
|
||||||
tests_require = [
|
tests_require = [
|
||||||
'pyflakes',
|
'pyflakes',
|
||||||
'moto==0.4.18',
|
'moto==0.4.19',
|
||||||
'nose==1.3.7',
|
'nose==1.3.7',
|
||||||
'pytest==2.8.3',
|
'pytest==2.8.5',
|
||||||
'pytest-flask==0.10.0'
|
'pytest-flask==0.10.0'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue