Skip to content

Commit b08e076

Browse files
committed
Re-try #107
1 parent d0d9b25 commit b08e076

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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: 4
8-
DEFAULT_PYTHON: "3.11"
7+
CACHE_VERSION: 5
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: 5
8-
DEFAULT_PYTHON: "3.11"
7+
CACHE_VERSION: 6
8+
DEFAULT_PYTHON: "3.12"
99
PRE_COMMIT_HOME: ~/.cache/pre-commit
1010

1111
on:
@@ -172,7 +172,7 @@ jobs:
172172
needs: commitcheck
173173
strategy:
174174
matrix:
175-
python-version: ["3.11", "3.10"]
175+
python-version: ["3.12", "3.11", "3.10"]
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.11", "3.10"]
214+
python-version: ["3.12", "3.11", "3.10"]
215215

216216
steps:
217217
- name: Check out committed code

.pre-commit-config.yaml

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

88
default_language_version:
99
# force all unspecified python hooks to run python3
10-
python: python3.11
10+
python: python3.12
1111

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

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "plugwise_usb"
7-
version = "0.31.3"
7+
version = "0.31.4a0"
88
license = {file = "LICENSE"}
99
description = "Plugwise USB (Stick) module for Python 3."
1010
readme = "README.md"
@@ -14,9 +14,9 @@ classifiers = [
1414
"Intended Audience :: Developers",
1515
"License :: OSI Approved :: MIT License",
1616
"Operating System :: OS Independent",
17-
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
2020
"Topic :: Home Automation",
2121
]
2222
authors = [
@@ -213,7 +213,7 @@ omit= [
213213
]
214214

215215
[tool.ruff]
216-
target-version = "py311"
216+
target-version = "py312"
217217

218218
select = [
219219
"B002", # Python does not support the unary prefix increment

scripts/python-venv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -eu
33

4-
pyversions=(3.11 3.10 3.9)
4+
pyversions=(3.12 3.11 3.10)
55
my_path=$(git rev-parse --show-toplevel)
66
my_venv=${my_path}/venv
77

0 commit comments

Comments
 (0)