Skip to content

Commit 7394cbf

Browse files
authored
[core] Don't allow python 3.14 (esphome#11527)
1 parent 1577a46 commit 7394cbf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ classifiers = [
1919
"Programming Language :: Python :: 3",
2020
"Topic :: Home Automation",
2121
]
22-
requires-python = ">=3.11.0"
22+
23+
# Python 3.14 is currently not supported by IDF <= 5.5.1, see https://github.com/esphome/esphome/issues/11502
24+
requires-python = ">=3.11.0,<3.14"
2325

2426
dynamic = ["dependencies", "optional-dependencies", "version"]
2527

0 commit comments

Comments
 (0)