Skip to content

Commit

Permalink
travis-ci: tie mypy to version 0.770
Browse files Browse the repository at this point in the history
Avoid using the latest mypy on each travis-ci run, as an upgraded
mypy may have new checks that cause failures unrelated to a current
PR. Hold the version at the last known good version: mypy-0.770.
  • Loading branch information
grondo committed Jun 3, 2020
1 parent 771a60a commit 110439b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: 'mypy'
language: 'python'
python: '3.6'
install: python3 -m pip install 'mypy' --force-reinstall
install: python3 -m pip install 'mypy==0.770' --force-reinstall
script: mypy
before_deploy: skip
deploy: skip
Expand Down

0 comments on commit 110439b

Please sign in to comment.