Skip to content

Commit fe41c34

Browse files
authored
chore: remove darglint from dev dependencies (#2022)
* chore: remove darglint from dev dependencies * chore: upgrade deps * chore: update make file * fix: blacksheep example test error with py3.9
1 parent c45dd9d commit fe41c34

File tree

3 files changed

+2575
-1695
lines changed

3 files changed

+2575
-1695
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ _lint:
4646
$(MAKE) _style
4747
$(MAKE) _codeqc
4848

49-
codeqc: build _typehints
49+
codeqc: build _codeqc
5050
_codeqc:
5151
mypy $(checkfiles)
5252
bandit -c pyproject.toml -r $(checkfiles)

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ dev = [
6363
# Linter tools
6464
"mypy",
6565
"ruff",
66-
"darglint",
6766
"pylint",
6867
"bandit",
6968
"codespell",
@@ -93,6 +92,7 @@ contrib=[
9392
# BlackSheep support
9493
"blacksheep>=2.0.8",
9594
"pytest-asyncio>=0.24.0",
95+
"pyjwt (>=2.10.1,<3.0.0); python_version < '3.10'",
9696
]
9797
test = [
9898
# Test tools
@@ -123,7 +123,6 @@ include = ["CHANGELOG.rst", "LICENSE", "README.rst"]
123123
[tool.mypy]
124124
pretty = true
125125
exclude = ["docs"]
126-
python_version = "3.9"
127126
ignore_missing_imports = true
128127
check_untyped_defs = true
129128
disallow_subclassing_any = true

0 commit comments

Comments
 (0)