Upgrade to newest mypy package

This commit is contained in:
Takeshi KOMIYA 2017-02-21 14:05:18 +09:00
parent dfe893a894
commit b2d8803545
3 changed files with 4 additions and 3 deletions

View File

@ -43,7 +43,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-lang 'typed-ast<1.0'; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then python3.6 -m pip install mypy 'typed-ast<1.0'; fi
script:
- flake8
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then make style-check type-check test-async; fi

View File

@ -1,6 +1,7 @@
[mypy]
python_version = 2.7
silent_imports = True
ignore_missing_imports = True
follow_imports = skip
fast_parser = True
incremental = True
check_untyped_defs = True

View File

@ -48,7 +48,7 @@ deps=
[testenv:py35]
deps=
mypy-lang
mypy
typed_ast
{[testenv]deps}
commands=