8000 Update Home Assistant base image to 2025.02.1 (#138746) · zweckj/home-assistant-core@5020983 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5020983

Browse files
frenckzweckj
authored andcommitted
Update Home Assistant base image to 2025.02.1 (home-assistant#138746)
* Update Home Assistant base image to 2025.02.1 * Require Python 3.13.2 now
1 parent 05f957c commit 5020983

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
image: ghcr.io/home-assistant/{arch}-homeassistant
22
build_from:
3-
aarch64: ghcr.io/home-assistant/aarch64-homeassistant-base:2024.12.0
4-
armhf: ghcr.io/home-assistant/armhf-homeassistant-base:2024.12.0
5-
armv7: ghcr.io/home-assistant/armv7-homeassistant-base:2024.12.0
6-
amd64: ghcr.io/home-assistant/amd64-homeassistant-base:2024.12.0
7-
i386: ghcr.io/home-assistant/i386-homeassistant-base:2024.12.0
3+
aarch64: ghcr.io/home-assistant/aarch64-homeassistant-base:2025.02.1
4+
armhf: ghcr.io/home-assistant/armhf-homeassistant-base:2025.02.1
5+
armv7: ghcr.io/home-assistant/armv7-homeassistant-base:2025.02.1
6+
amd64: ghcr.io/home-assistant/amd64-homeassistant-base:2025.02.1
7+
i386: ghcr.io/home-assistant/i386-homeassistant-base:2025.02.1
88
codenotary:
99
signer: notary@home-assistant.io
1010
base_image: notary@home-assistant.io

homeassistant/const.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
PATCH_VERSION: Final = "0.dev0"
2929
__short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}"
3030
__version__: Final = f"{__short_version__}.{PATCH_VERSION}"
31-
REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 0)
32-
REQUIRED_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 0)
31+
REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 2)
32+
REQUIRED_NEXT_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 2)
3333
# Truthy date string triggers showing related deprecation warning messages.
3434
REQUIRED_NEXT_PYTHON_HA_RELEASE: Final = ""
3535

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.13",
2222
"Topic :: Home Automation",
2323
]
24-
requires-python = ">=3.13.0"
24+
requires-python = ">=3.13.2"
2525
dependencies = [
2626
"aiodns==3.2.0",
2727
# Integrations may depend on hassio integration without listing it to

0 commit comments

Comments
 (0)
0