Steven Loria 7 years ago
commit eb0208a4ae
No known key found for this signature in database
GPG Key ID: 1655D1A1BDFBA4D7
  1. 2
      {{cookiecutter.app_name}}/.travis.yml
  2. 8
      {{cookiecutter.app_name}}/requirements/dev.txt
  3. 10
      {{cookiecutter.app_name}}/requirements/prod.txt

@ -1,6 +1,8 @@
# Config file for automatic testing at travis-ci.org # Config file for automatic testing at travis-ci.org
sudo: false # http://docs.travis-ci.com/user/migrating-from-legacy/ sudo: false # http://docs.travis-ci.com/user/migrating-from-legacy/
language: python language: python
env:
- FLASK_APP=autoapp.py FLASK_DEBUG=1
python: python:
- 2.7 - 2.7
- 3.4 - 3.4

@ -2,16 +2,16 @@
-r prod.txt -r prod.txt
# Testing # Testing
pytest==3.0.6 pytest==3.0.7
WebTest==2.0.26 WebTest==2.0.27
factory-boy==2.8.1 factory-boy==2.8.1
# Lint and code style # Lint and code style
flake8==3.3.0 flake8==3.3.0
flake8-blind-except==0.1.1 flake8-blind-except==0.1.1
flake8-debugger==1.4.0 flake8-debugger==1.4.0
flake8-docstrings==1.1.0 flake8-docstrings==1.0.3
flake8-isort==2.1.3 flake8-isort==2.2
flake8-quotes==0.9.0 flake8-quotes==0.9.0
isort==4.2.5 isort==4.2.5
pep8-naming==0.4.1 pep8-naming==0.4.1

@ -1,17 +1,17 @@
# Everything needed in production # Everything needed in production
# Flask # Flask
Flask==0.12 Flask==0.12.1
MarkupSafe==1.0 MarkupSafe==1.0
Werkzeug==0.11.15 Werkzeug==0.12.1
Jinja2==2.9.5 Jinja2==2.9.6
itsdangerous==0.24 itsdangerous==0.24
click>=5.0 click>=5.0
# Database # Database
Flask-SQLAlchemy==2.2 Flask-SQLAlchemy==2.2
psycopg2==2.7 psycopg2==2.7.1
SQLAlchemy==1.1.5 SQLAlchemy==1.1.9
# Migrations # Migrations
Flask-Migrate==2.0.3 Flask-Migrate==2.0.3

Loading…
Cancel
Save