Merge pull request #373 from mterzo/rel_0.2

Bounded the latest version of Werkzeug
This commit is contained in:
Tim Meusel
2017-03-20 18:45:51 +01:00
committed by GitHub
2 changed files with 1 additions and 15 deletions

View File

@@ -5,23 +5,8 @@ python:
- "2.7" - "2.7"
- "3.5" - "3.5"
- "3.6" - "3.6"
env:
- PINNED=TRUE
- PINNED=FALSE
matrix:
allow_failures:
- python: 2.6
env: PINNED=FALSE
- python: 2.7
env: PINNED=FALSE
- python: 3.5
env: PINNED=FALSE
- python: 3.6
env: PINNED=FALSE
install: install:
- if [ "${PINNED}" == "FALSE" ]; then python scripts/unpin.py; fi
- pip install -r requirements.txt - pip install -r requirements.txt
- pip install -U -r requirements-test.txt - pip install -U -r requirements-test.txt
- pip install -q coverage coveralls --use-wheel - pip install -q coverage coveralls --use-wheel

View File

@@ -33,6 +33,7 @@ setup(
"Flask >= 0.10.1", "Flask >= 0.10.1",
"Flask-WTF >= 0.12, <= 0.13", "Flask-WTF >= 0.12, <= 0.13",
"WTForms >= 2.0, < 3.0", "WTForms >= 2.0, < 3.0",
"Werkzeug >=0.7, <= 0.11.5",
"pypuppetdb >= 0.3.0, < 0.4.0", "pypuppetdb >= 0.3.0, < 0.4.0",
], ],
keywords="puppet puppetdb puppetboard", keywords="puppet puppetdb puppetboard",