@@ -14,6 +14,7 @@ classifiers = [
1414 " Intended Audience :: Developers" ,
1515 " License :: OSI Approved :: MIT License" ,
1616 " Operating System :: OS Independent" ,
17+ " Programming Language :: Python :: 3.11" ,
1718 " Programming Language :: Python :: 3.12" ,
1819 " Topic :: Home Automation" ,
1920]
@@ -24,7 +25,7 @@ maintainers = [
2425 { name = " bouwew" },
2526 { name = " CoMPaTech" }
2627]
27- requires-python = " >=3.12 .0"
28+ requires-python = " >=3.11 .0"
2829dependencies = [
2930 " aiohttp" ,
3031 " async_timeout" ,
@@ -51,7 +52,7 @@ include-package-data = true
5152include = [" plugwise*" ]
5253
5354[tool .black ]
54- target-version = [" py312 " ]
55+ target-version = [" py311 " ]
5556exclude = ' generated'
5657
5758[tool .isort ]
@@ -187,7 +188,7 @@ norecursedirs = [
187188]
188189
189190[tool .mypy ]
190- python_version = " 3.12 "
191+ python_version = " 3.11 "
191192show_error_codes = true
192193follow_imports = " silent"
193194ignore_missing_imports = true
@@ -217,7 +218,7 @@ omit= [
217218]
218219
219220[tool .ruff ]
220- target-version = " py312 "
221+ target-version = " py311 "
221222
222223select = [
223224 " B002" , # Python does not support the unary prefix increment
0 commit comments