Skip to content

Commit

Permalink
Remove mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Simon committed Sep 26, 2024
1 parent b6b1150 commit a3b6752
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore=E501,E203,W503
ignore=E501,E203,W503,W293
3 changes: 0 additions & 3 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,3 @@ jobs:

- name: Run linters
run: make linter

- name: Run Mypy
run: make mypy
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a3b6752

Please sign in to comment.