# HG changeset patch # User Drew Perttula # Date 1495614656 0 # Node ID 1b42120d97f56a6bee8ccc17ca06734c191ac9a2 # Parent 900c2b2ea95651fe46adb57ba6beba6b2bbbe301 mypy upgrade Ignore-this: f3d15dd4ced025a818b9601edb3ba8e9 diff -r 900c2b2ea956 -r 1b42120d97f5 makefile --- a/makefile Wed May 24 08:30:12 2017 +0000 +++ b/makefile Wed May 24 08:30:56 2017 +0000 @@ -105,7 +105,10 @@ env-mypy/bin/mypy: mkdir -p env-mypy virtualenv -p /usr/bin/python3 env-mypy/ - env-mypy/bin/pip install mypy==0.501 lxml==3.7.3 + env-mypy/bin/pip install mypy==0.510 lxml==3.7.3 mypy-collector: env-mypy/bin/mypy env-mypy/bin/mypy --py2 --ignore-missing-imports --strict-optional --custom-typeshed-dir stubs --html-report /tmp/rep bin/collector light9/collector/*.py + +mypy-paint: env-mypy/bin/mypy + env-mypy/bin/mypy --py2 --ignore-missing-imports --strict-optional --custom-typeshed-dir stubs --html-report /tmp/rep light9/paint/*.py