1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Update base image to Python 3.13 and deprecated 3.12 (#130425)

This commit is contained in:
Marc Mueller
2024-11-13 19:28:53 +01:00
committed by GitHub
parent 0a5a2de78e
commit ed5560aec2
5 changed files with 10 additions and 9 deletions

View File

@@ -29,9 +29,9 @@ 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_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 12, 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 = ""
REQUIRED_NEXT_PYTHON_HA_RELEASE: Final = "2025.2"
# Format for platform files
PLATFORM_FORMAT: Final = "{platform}.{domain}"