diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index dc074928..167a8a46 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -23,6 +23,7 @@ jobs: poetry install - name: Typecheck with mypy run: | + pip install mypy==0.781 make typecheck - name: Test with pytest run: | diff --git a/Makefile b/Makefile index 8cd7b3c2..9df9641c 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,6 @@ typecheck: mypy -p rich --ignore-missing-imports --warn-unreachable typecheck-report: mypy -p rich --ignore-missing-imports --warn-unreachable --html-report mypy_report -pytype: - pytype --config=pytype.cfg .PHONY: docs docs: cd docs; make html