Skip to content

Commit

Permalink
Update mypy config
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Dec 6, 2024
1 parent c0e6e5c commit 63867c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion homeassistant/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
PATCH_VERSION: Final = "0.dev0"
__short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__: Final = f"{__short_version__}.{PATCH_VERSION}"
REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 12, 0)
REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 0)
REQUIRED_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 0)
# Truthy date string triggers showing related deprecation warning messages.
REQUIRED_NEXT_PYTHON_HA_RELEASE: Final = "2025.2"
Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To update, run python3 -m script.hassfest -p mypy_config

[mypy]
python_version = 3.12
python_version = 3.13
platform = linux
plugins = pydantic.mypy
show_error_codes = true
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3.13",
"Topic :: Home Automation",
]
requires-python = ">=3.12.0"
requires-python = ">=3.13.0"
dependencies = [
"aiodns==3.2.0",
# Integrations may depend on hassio integration without listing it to
Expand Down

0 comments on commit 63867c9

Please sign in to comment.