Merge pull request #3500 from tk0miya/3499_pin_mypy_0.4

Pin mypy < 0.5 (refs: #3499)
This commit is contained in:
Takeshi KOMIYA 2017-03-03 13:40:24 +09:00 committed by GitHub
commit beca8d7aea

View File

@ -46,7 +46,7 @@ install:
- pip install -U pip setuptools
- pip install docutils==$DOCUTILS
- pip install -r test-reqs.txt
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then python3.6 -m pip install mypy 'typed-ast<1.0'; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then python3.6 -m pip install 'mypy==0.471' 'typed-ast<1.0'; fi
script:
- flake8
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then make style-check type-check test-async; fi