Skip to content

Commit 87cf3d4

Browse files
author
Daniel Gallagher
committed
Try installing mypy only when python version is 3.6
1 parent 1d49df0 commit 87cf3d4

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
@@ -13,7 +13,9 @@ matrix:
1313
python: pypy-5.7.1
1414
- env: TOXENV=pre-commit
1515
python: 3.6
16-
install: pip install coveralls tox mypy
16+
install:
17+
- pip install coveralls tox mypy
18+
- if [[ $TRAVIS_PYTHON_VERSION == '3.6' ]]; then pip install mypy; fi
1719
script: tox
1820
after_success: coveralls
1921
cache:

0 commit comments

Comments
 (0)