Skip to content

Commit 0cad7dc

Browse files
committed
Python version fixes
1 parent ca3f934 commit 0cad7dc

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
needs: commitcheck
174174
strategy:
175175
matrix:
176-
python-version: ["3.12", "3.11", "3.10"]
176+
python-version: ["3.13"]
177177
steps:
178178
- name: Check out committed code
179179
uses: actions/checkout@v4
@@ -213,7 +213,7 @@ jobs:
213213
needs: prepare-test-cache
214214
strategy:
215215
matrix:
216-
python-version: ["3.12", "3.11", "3.10"]
216+
python-version: ["3.13"]
217217

218218
steps:
219219
- name: Check out committed code

pyproject.toml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ classifiers = [
1414
"Intended Audience :: Developers",
1515
"License :: OSI Approved :: MIT License",
1616
"Operating System :: OS Independent",
17-
"Programming Language :: Python :: 3.10",
18-
"Programming Language :: Python :: 3.11",
19-
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
2018
"Topic :: Home Automation",
2119
]
2220
authors = [
@@ -29,7 +27,7 @@ maintainers = [
2927
{ name = "CoMPaTech" },
3028
{ name = "dirixmjm" }
3129
]
32-
requires-python = ">=3.10.0"
30+
requires-python = ">=3.13.0"
3331
dependencies = [
3432
"aiohttp",
3533
"async_timeout",
@@ -56,7 +54,7 @@ include-package-data = true
5654
include = ["plugwise*"]
5755

5856
[tool.black]
59-
target-version = ["py312"]
57+
target-version = ["py313"]
6058
exclude = 'generated'
6159

6260
[tool.isort]
@@ -193,7 +191,7 @@ norecursedirs = [
193191
]
194192

195193
[tool.mypy]
196-
python_version = "3.12"
194+
python_version = "3.13"
197195
show_error_codes = true
198196
follow_imports = "silent"
199197
ignore_missing_imports = true

0 commit comments

Comments
 (0)