Skip to content

Commit 0781ec2

Browse files
committed
Use werkzeug pre-1.0 in CI
1 parent 03b09d1 commit 0781ec2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ matrix:
1111
allow_failures:
1212
- python: "nightly"
1313
install:
14-
- pip install coveralls flake8 nose flask flask_restful flask_restplus injector flask_sqlalchemy eventlet typing
14+
# werkzeug 1.0 breaks some parts of Flask ecosystem (see https://github.com/pallets/flask/pull/3488),
15+
# so let's use older versions at least for now.
16+
- pip install coveralls flake8 nose flask flask_restful flask_restplus injector flask_sqlalchemy eventlet typing "werkzeug<1.0"
1517
# mypy can't be installed on pypy
1618
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy typed_ast ; fi
1719
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi

0 commit comments

Comments
 (0)