1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 19:02:18 +01:00

update minimal python version to 3.10 (#8850)

This commit is contained in:
Thomas Rupprecht
2025-05-22 03:21:43 +02:00
committed by GitHub
parent 026f47bfb3
commit aeb4e63950
36 changed files with 148 additions and 166 deletions

View File

@@ -20,7 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Home Automation",
]
requires-python = ">=3.9.0"
requires-python = ">=3.10.0"
dynamic = ["dependencies", "optional-dependencies", "version"]
@@ -62,7 +62,7 @@ addopts = [
]
[tool.pylint.MAIN]
py-version = "3.9"
py-version = "3.10"
ignore = [
"api_pb2.py",
]
@@ -106,7 +106,7 @@ expected-line-ending-format = "LF"
[tool.ruff]
required-version = ">=0.5.0"
target-version = "py39"
target-version = "py310"
exclude = ['generated']
[tool.ruff.lint]