Skip to content

Commit

Permalink
Pinning all dependencies to specific versions (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored Jun 15, 2016
1 parent a117498 commit d90a2c8
Showing 1 changed file with 17 additions and 20 deletions.
37 changes: 17 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,27 @@
zip_safe=False,
scripts=['caravel/bin/caravel'],
install_requires=[
'alembic>=0.8.5, <0.9.0',
'babel==2.3.4',
'cryptography>=1.1.1, <2.0.0',
'flask-appbuilder>=1.7.1, <2.0.0',
'cryptography==1.1.1',
'flask-appbuilder==1.7.1',
'Flask-BabelPkg==0.9.6',
'flask-cache>=0.13.1, <0.14.0',
'flask-migrate>=1.5.1, <2.0.0',
'flask-script>=2.0.5, <3.0.0',
'flask-sqlalchemy==2.0.0',
'flask-testing>=0.4.2, <0.5.0',
'flask>=0.10.1, <1.0.0',
'humanize>=0.5.1, <0.6.0',
'gunicorn>=19.3.0, <20.0.0',
'markdown>=2.6.2, <3.0.0',
'pandas==0.18.0',
'flask-cache==0.13.1',
'flask-migrate==1.5.1',
'flask-script==2.0.5',
'flask-testing==0.5.0',
'humanize==0.5.1',
'gunicorn==19.6.0',
'markdown==2.6.6',
'pandas==0.18.1',
'parsedatetime==2.0.0',
'pydruid==0.3.0, <0.4.0',
'python-dateutil>=2.4.2, <3.0.0',
'requests>=2.7.0, <3.0.0',
'pydruid==0.3.0',
'python-dateutil==2.5.3',
'requests==2.10.0',
'simplejson==3.8.2',
'sqlalchemy>=1.0.12, <2.0.0',
'sqlalchemy-utils>=0.31.3, <0.32.0',
'sqlparse>=0.1.16, <0.2.0',
'werkzeug>=0.11.2, <0.12.0',
'sqlalchemy==1.0.13',
'sqlalchemy-utils==0.32.7',
'sqlparse==0.1.19',
'werkzeug==0.11.10',
],
extras_require={
'cors': ['Flask-Cors>=2.0.0'],
Expand Down

0 comments on commit d90a2c8

Please sign in to comment.