diff --git a/Makefile b/Makefile index 57974ef..950d09f 100644 --- a/Makefile +++ b/Makefile @@ -39,9 +39,6 @@ linter: poetry.lock poetry run flake8 $(SOURCE_FOLDERS) poetry run pylint --score=no --extension-pkg-whitelist=lxml,dockerfile src -.PHONY: mypy -mypy: poetry.lock - poetry run mypy --ignore-missing-imports src/ .PHONY: docs docs: $(DOCS) install diff --git a/pyproject.toml b/pyproject.toml index d0cac35..65c4ffc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,8 +24,8 @@ packages = [ ] [tool.poetry.dependencies] -python = '^3.8' -mypy = "^0.910" +python = '>=3.8,<3.12' +mypy = "1.2" lxml = "^4.6.3" GitPython = "^3.1.24" click = "^8.0.3"