Update mypy-dev to 1.14.0a6 (#132440)

This commit is contained in:
Marc Mueller 2024-12-06 04:34:05 +01:00 committed by GitHub
parent 28d6a21189
commit 60fd9d5027
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 4 deletions

View File

@ -11,12 +11,11 @@ follow_imports = normal
local_partial_types = true
strict_equality = true
no_implicit_optional = true
report_deprecated_as_error = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
enable_error_code = ignore-without-code, redundant-self, truthy-iterable
enable_error_code = deprecated, ignore-without-code, redundant-self, truthy-iterable
disable_error_code = annotation-unchecked, import-not-found, import-untyped
extra_checks = false
check_untyped_defs = true

View File

@ -12,7 +12,7 @@ coverage==7.6.8
freezegun==1.5.1
license-expression==30.4.0
mock-open==1.4.0
mypy-dev==1.14.0a5
mypy-dev==1.14.0a6
pre-commit==4.0.0
pydantic==1.10.19
pylint==3.3.1

View File

@ -43,13 +43,13 @@ GENERAL_SETTINGS: Final[dict[str, str]] = {
"local_partial_types": "true",
"strict_equality": "true",
"no_implicit_optional": "true",
"report_deprecated_as_error": "true",
"warn_incomplete_stub": "true",
"warn_redundant_casts": "true",
"warn_unused_configs": "true",
"warn_unused_ignores": "true",
"enable_error_code": ", ".join( # noqa: FLY002
[
"deprecated",
"ignore-without-code",
"redundant-self",
"truthy-iterable",