Skip to content

Commit 0df12c4

Browse files
committed
Use python 3.11 during tests
1 parent d1b8eba commit 0df12c4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0 # needed by setuptools-scm
22-
- name: Switch to using Python 3.9 by default
22+
- name: Switch to using Python 3.11 by default
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.9"
25+
python-version: "3.11"
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip

.github/workflows/tox.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
toxenv: [docs, packaging, py39]
46+
toxenv: [docs, packaging, py311]
4747
steps:
4848
- uses: actions/checkout@v4
49-
- name: Set up Python 3.9
49+
- name: Set up Python 3.11
5050
uses: actions/setup-python@v5
5151
with:
52-
python-version: "3.9"
52+
python-version: "3.11"
5353
- name: Install dependencies
5454
run: |
5555
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)