From 9aa9278eece45dc64953ed46ffcc60c5da62cda0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cerm=C3=A1k?= Date: Thu, 5 Feb 2026 08:20:03 +0100 Subject: [PATCH] Bump base image to 2026.02.0 with Python 3.14.3, use 3.14.3 in CI This also bumps libcec used in the base image to 7.1.1, full changelog: * https://github.com/home-assistant/docker/releases/tag/2026.02.0 Python changelog: * https://docs.python.org/release/3.14.3/whatsnew/changelog.html --- .github/workflows/builder.yml | 2 +- .python-version | 2 +- script/hassfest/docker/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 7aebea1ff2cb13..6c33199d42cbb2 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -14,7 +14,7 @@ env: UV_HTTP_TIMEOUT: 60 UV_SYSTEM_PYTHON: "true" # Base image version from https://github.com/home-assistant/docker - BASE_IMAGE_VERSION: "2026.01.0" + BASE_IMAGE_VERSION: "2026.02.0" ARCHITECTURES: '["amd64", "aarch64"]' permissions: {} diff --git a/.python-version b/.python-version index 95ed564f82b7ae..da717732b71114 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.14.2 +3.14.3 diff --git a/script/hassfest/docker/Dockerfile b/script/hassfest/docker/Dockerfile index ba620a02e838f7..c3df113e208d3f 100644 --- a/script/hassfest/docker/Dockerfile +++ b/script/hassfest/docker/Dockerfile @@ -2,7 +2,7 @@ # Automatically generated by hassfest. # # To update, run python3 -m script.hassfest -p docker -FROM python:3.14.2-alpine +FROM python:3.14.3-alpine ENV \ UV_SYSTEM_PYTHON=true \