Skip to content

Commit 7dbe7f4

Browse files
committed
fix(mypy): restore python_version to 3.14
The real fix was adding 'from __future__ import annotations' to modules, not downgrading the target version. mypy 1.19.0 supports Python 3.14.
1 parent 8b459aa commit 7dbe7f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ exclude_lines = [
117117
]
118118

119119
[tool.mypy]
120-
python_version = "3.12"
120+
python_version = "3.14"
121121
warn_return_any = true
122122
warn_unused_configs = true
123123
disallow_untyped_defs = false

0 commit comments

Comments
 (0)