Skip to content

Commit 8580009

Browse files
authored
Merge pull request #276 from plugwise/py311
Add (and default to) py311
2 parents b990ee4 + f3d206e commit 8580009

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Latest release
55

66
env:
77
CACHE_VERSION: 7
8-
DEFAULT_PYTHON: "3.10"
8+
DEFAULT_PYTHON: "3.11"
99

1010
# Only run on merges
1111
on:

.github/workflows/verify.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Latest commit
55

66
env:
77
CACHE_VERSION: 4
8-
DEFAULT_PYTHON: "3.10"
8+
DEFAULT_PYTHON: "3.11"
99
PRE_COMMIT_HOME: ~/.cache/pre-commit
1010

1111
on:
@@ -164,7 +164,7 @@ jobs:
164164
needs: commitcheck
165165
strategy:
166166
matrix:
167-
python-version: [3.9, "3.10", "3.11"]
167+
python-version: ["3.11", "3.10", "3.9"]
168168
steps:
169169
- name: Check out committed code
170170
uses: actions/checkout@v3
@@ -203,7 +203,7 @@ jobs:
203203
needs: prepare-test-cache
204204
strategy:
205205
matrix:
206-
python-version: [3.9, "3.10", "3.11"]
206+
python-version: ["3.11", "3.10", "3.9"]
207207

208208
steps:
209209
- name: Check out committed code

.pre-commit-config.yaml

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

55
default_language_version:
66
# force all unspecified python hooks to run python3
7-
python: python3.10
7+
python: python3.11
88

99
repos:
1010
# Run manually in CI skipping the branch checks

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Ongoing
44

55
- Improved markdown (i.e. markup and contents), added linter for markdown & added code owners
6+
- Default to python 3.11
67

78
## v0.27.7: Stick bugfix: fix for reported issue #312
89

0 commit comments

Comments
 (0)