Updating requirements

This commit is contained in:
kevgliss 2015-11-23 15:41:11 -08:00
parent f0324e4755
commit 0600481a67
2 changed files with 14 additions and 14 deletions

View File

@ -5,25 +5,25 @@ docutils>=0.7
markupsafe markupsafe
sphinxcontrib-httpdomain sphinxcontrib-httpdomain
Flask==0.10.1 Flask==0.10.1
Flask-RESTful==0.3.3 Flask-RESTful==0.3.4
Flask-SQLAlchemy==2.0 Flask-SQLAlchemy==2.1
Flask-Script==2.0.5 Flask-Script==2.0.5
Flask-Migrate==1.4.0 Flask-Migrate==1.6.0
Flask-Bcrypt==0.6.2 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.30.11 SQLAlchemy-Utils==0.31.3
BeautifulSoup4 BeautifulSoup4
requests==2.7.0 requests==2.8.0
psycopg2==2.6.1 psycopg2==2.6.1
arrow==0.5.4 arrow==0.7.0
boto==2.38.0 # we might make this optional boto==2.38.0 # we might make this optional
six==1.9.0 six==1.10.0
gunicorn==19.3.0 gunicorn==19.3.0
pycrypto==2.6.1 pycrypto==2.6.1
cryptography==1.0.1 cryptography==1.1.1
pyopenssl==0.15.1 pyopenssl==0.15.1
pyjwt==1.0.1 pyjwt==1.4.0
xmltodict==0.9.2 xmltodict==0.9.2
lockfile==0.10.2 lockfile==0.11.0
future==0.15.0 future==0.15.2

View File

@ -38,7 +38,7 @@ install_requires = [
'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.9.0', 'six==1.10.0',
'gunicorn==19.3.0', 'gunicorn==19.3.0',
'pycrypto==2.6.1', 'pycrypto==2.6.1',
'cryptography==1.1.1', 'cryptography==1.1.1',
@ -63,7 +63,7 @@ docs_require = [
] ]
dev_requires = [ dev_requires = [
'flake8>=2.0,<2.5.0', 'flake8>=2.0,<3.0',
] ]