Skip to content

Commit 6d55b2a

Browse files
committed
Minimal required changes
1 parent 8176bb4 commit 6d55b2a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
name: Latest release
55

66
env:
7-
CACHE_VERSION: 9
8-
DEFAULT_PYTHON: "3.11"
7+
CACHE_VERSION: 10
8+
DEFAULT_PYTHON: "3.12"
99

1010
# Only run on merges
1111
on:

.github/workflows/verify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
name: Latest commit
55

66
env:
7-
CACHE_VERSION: 10
8-
DEFAULT_PYTHON: "3.11"
7+
CACHE_VERSION: 11
8+
DEFAULT_PYTHON: "3.12"
99
PRE_COMMIT_HOME: ~/.cache/pre-commit
1010

1111
on:
@@ -167,7 +167,7 @@ jobs:
167167
needs: commitcheck
168168
strategy:
169169
matrix:
170-
python-version: ["3.12", "3.11"]
170+
python-version: ["3.12"]
171171
steps:
172172
- name: Check out committed code
173173
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
@@ -206,7 +206,7 @@ jobs:
206206
needs: prepare-test-cache
207207
strategy:
208208
matrix:
209-
python-version: ["3.12", "3.11"]
209+
python-version: ["3.12"]
210210

211211
steps:
212212
- name: Check out committed code

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ci:
66

77
default_language_version:
88
# force all unspecified python hooks to run python3
9-
python: python3.11
9+
python: python3.12
1010

1111
repos:
1212
# Run manually in CI skipping the branch checks

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ include-package-data = true
5252
include = ["plugwise*"]
5353

5454
[tool.black]
55-
target-version = ["py311"]
55+
target-version = ["py312"]
5656
exclude = 'generated'
5757

5858
[tool.isort]
@@ -188,7 +188,7 @@ norecursedirs = [
188188
]
189189

190190
[tool.mypy]
191-
python_version = "3.11"
191+
python_version = "3.12"
192192
show_error_codes = true
193193
follow_imports = "silent"
194194
ignore_missing_imports = true
@@ -218,7 +218,7 @@ omit= [
218218
]
219219

220220
[tool.ruff]
221-
target-version = "py311"
221+
target-version = "py312"
222222

223223
select = [
224224
"B002", # Python does not support the unary prefix increment

0 commit comments

Comments
 (0)