From 55bd4c41a03e47642b960ddc3c85a01ba1bc85aa Mon Sep 17 00:00:00 2001 From: cayossarian <23534755+cayossarian@users.noreply.github.com> Date: Thu, 2 Apr 2026 20:24:04 -0700 Subject: [PATCH] Fix Python version requirement to match Docker base images The HA addon base image ships Python 3.13 and the standalone Dockerfile uses 3.12, but requires-python was set to >=3.14 which broke the CI build. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e6c20d6..8380ebe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "span-panel-simulator" version = "1.0.10" description = "Standalone eBus simulator for SPAN panels" -requires-python = ">=3.14" +requires-python = ">=3.12" dependencies = [ "aiomqtt>=2.0.0", "aiohttp>=3.9.0",