Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ _lint:
$(MAKE) _style
$(MAKE) _codeqc

codeqc: build _typehints
codeqc: build _codeqc
_codeqc:
mypy $(checkfiles)
bandit -c pyproject.toml -r $(checkfiles)
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ dev = [
# Linter tools
"mypy",
"ruff",
"darglint",
"pylint",
"bandit",
"codespell",
Expand Down Expand Up @@ -93,6 +92,7 @@ contrib=[
# BlackSheep support
"blacksheep>=2.0.8",
"pytest-asyncio>=0.24.0",
"pyjwt (>=2.10.1,<3.0.0); python_version < '3.10'",
]
test = [
# Test tools
Expand Down Expand Up @@ -123,7 +123,6 @@ include = ["CHANGELOG.rst", "LICENSE", "README.rst"]
[tool.mypy]
pretty = true
exclude = ["docs"]
python_version = "3.9"
ignore_missing_imports = true
check_untyped_defs = true
disallow_subclassing_any = true
Expand Down
Loading