Drop Python 3.10 support (#97007)

This commit is contained in:
Franck Nijhof
2023-07-22 23:03:45 +02:00
committed by GitHub
parent 9424d11408
commit ce1f5f997e
12 changed files with 13 additions and 22 deletions

View File

@@ -18,11 +18,10 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Home Automation",
]
requires-python = ">=3.10.0"
requires-python = ">=3.11.0"
dependencies = [
"aiohttp==3.8.5",
"astral==2.2",
@@ -80,7 +79,7 @@ include = ["homeassistant*"]
extend-exclude = "/generated/"
[tool.pylint.MAIN]
py-version = "3.10"
py-version = "3.11"
ignore = [
"tests",
]