Flask==0.10.1 # Hello. This is Nick from the future (March 2019 to be exact). An emergency # addition had to be made below to fix an issue related to a recent version of # werkzeug. This library was not version locked in this file. # # The line below isn't covered on video, but it locks werkzeug to the latest # version that works with this course's code base. A future update video will # cover upgrading this package and more. werkzeug==0.14.1 # Application server for both development and production. gunicorn==19.4.5 # Testing and static analysis. pytest==2.9.1 pytest-cov==2.2.1 flake8==2.5.4 # CLI. Click==6.4 # Data and workers. psycopg2==2.6.1 Flask-SQLAlchemy==2.1 # Hello. This is Nick from the future (March 2019 to be exact). An emergency # addition had to be made below to fix an issue that resulted in SQLAlchemy # throwing an error. Flask-SQLAlchemy 2.1 doesn't version lock SQLAlchemy and # SQLAlchemy 1.3.x introduced breaking changes. # # The line below isn't covered on video, but it locks SQLAlchemy to 1.2.0. A # future update video will cover upgrading SQLAlchemy to 1.3.0 and more. SQLAlchemy==1.2.0 redis==2.10.5 celery==3.1.23 # Forms. Flask-WTF==0.9.5 WTForms-Components==0.9.7 # Utils. fake-factory==0.5.7 # Extensions. flask-debugtoolbar==0.10.0 Flask-Mail==0.9.1 Flask-Login==0.3.2