Skip to content

Commit e75411f

Browse files
committed
Python version fixes
1 parent 9fe1ed1 commit e75411f

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/verify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
needs: commitcheck
173173
strategy:
174174
matrix:
175-
python-version: ["3.12", "3.11"]
175+
python-version: ["3.13"]
176176
steps:
177177
- name: Check out committed code
178178
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
@@ -211,7 +211,7 @@ jobs:
211211
needs: prepare-test-cache
212212
strategy:
213213
matrix:
214-
python-version: ["3.12", "3.11"]
214+
python-version: ["3.13"]
215215

216216
steps:
217217
- name: Check out committed code

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ classifiers = [
1111
"Intended Audience :: Developers",
1212
"License :: OSI Approved :: MIT License",
1313
"Operating System :: OS Independent",
14-
"Programming Language :: Python :: 3.11",
15-
"Programming Language :: Python :: 3.12",
14+
"Programming Language :: Python :: 3.13",
1615
"Topic :: Home Automation",
1716
]
1817
authors = [
@@ -25,7 +24,7 @@ maintainers = [
2524
{ name = "CoMPaTech" },
2625
{ name = "dirixmjm" }
2726
]
28-
requires-python = ">=3.11.0"
27+
requires-python = ">=3.13.0"
2928
dependencies = [
3029
"pyserial-asyncio-fast",
3130
"aiofiles",
@@ -48,7 +47,7 @@ include-package-data = true
4847
include = ["plugwise*"]
4948

5049
[tool.black]
51-
target-version = ["py312"]
50+
target-version = ["py313"]
5251
exclude = 'generated'
5352

5453
[tool.isort]
@@ -186,7 +185,7 @@ norecursedirs = [
186185
]
187186

188187
[tool.mypy]
189-
python_version = "3.12"
188+
python_version = "3.13"
190189
show_error_codes = true
191190
follow_imports = "silent"
192191
ignore_missing_imports = true

0 commit comments

Comments
 (0)