Skip to content

Commit 16c0eac

Browse files
committed
requirements[dev]: Upgrade mypy from ~=1.4.0 to ~=1.5.0.
The strict-concatenate option is now deprecated, so replaced by extra-checks, in pyproject.toml.
1 parent f19a2cc commit 16c0eac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ warn_unused_ignores = true
9090
warn_return_any = false
9191
no_implicit_reexport = true # NOTE: Disabled explicitly for tests/ in run-mypy
9292
strict_equality = true
93-
strict_concatenate = true
93+
94+
extra_checks = true
9495

9596
enable_error_code = [
9697
"redundant-expr",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def long_description():
4242

4343
typing_deps = [
4444
"lxml-stubs",
45-
"mypy~=1.4.0",
45+
"mypy~=1.5.0",
4646
"types-beautifulsoup4",
4747
"types-pygments",
4848
"types-python-dateutil",

0 commit comments

Comments
 (0)