Skip to content

Commit 83ec18b

Browse files
felixxmsarahboyce
authored andcommitted
[5.0.x] Refs #34118 -- Used Python 3.12 for GitHub actions.
1 parent c3d3af8 commit 83ec18b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Python
3131
uses: actions/setup-python@v4
3232
with:
33-
python-version: '3.11'
33+
python-version: '3.12'
3434
cache: 'pip'
3535
cache-dependency-path: 'docs/requirements.txt'
3636
- run: python -m pip install -r docs/requirements.txt
@@ -48,7 +48,7 @@ jobs:
4848
- name: Set up Python
4949
uses: actions/setup-python@v4
5050
with:
51-
python-version: '3.11'
51+
python-version: '3.12'
5252
- run: python -m pip install blacken-docs
5353
- name: Build docs
5454
run: |

.github/workflows/linters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v4
2929
with:
30-
python-version: '3.11'
30+
python-version: '3.12'
3131
- run: python -m pip install flake8
3232
- name: flake8
3333
# Pinned to v2.0.0.
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Python
4545
uses: actions/setup-python@v4
4646
with:
47-
python-version: '3.11'
47+
python-version: '3.12'
4848
- run: python -m pip install isort
4949
- name: isort
5050
# Pinned to v2.0.0.

.github/workflows/schedule_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version:
1919
- '3.10'
2020
- '3.11'
21-
- '3.12-dev'
21+
- '3.12'
2222
name: Windows, SQLite, Python ${{ matrix.python-version }}
2323
continue-on-error: true
2424
steps:
@@ -60,7 +60,7 @@ jobs:
6060
- name: Set up Python
6161
uses: actions/setup-python@v4
6262
with:
63-
python-version: '3.11'
63+
python-version: '3.12'
6464
cache: 'pip'
6565
cache-dependency-path: 'tests/requirements/py3.txt'
6666
- name: Install and upgrade packaging tools
@@ -94,7 +94,7 @@ jobs:
9494
- name: Set up Python
9595
uses: actions/setup-python@v4
9696
with:
97-
python-version: '3.11'
97+
python-version: '3.12'
9898
cache: 'pip'
9999
cache-dependency-path: 'tests/requirements/py3.txt'
100100
- name: Install and upgrade packaging tools

.github/workflows/selenium.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: '3.11'
27+
python-version: '3.12'
2828
cache: 'pip'
2929
cache-dependency-path: 'tests/requirements/py3.txt'
3030
- name: Install and upgrade packaging tools
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Python
6060
uses: actions/setup-python@v4
6161
with:
62-
python-version: '3.11'
62+
python-version: '3.12'
6363
cache: 'pip'
6464
cache-dependency-path: 'tests/requirements/py3.txt'
6565
- name: Install and upgrade packaging tools

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
python-version:
26-
- '3.11'
26+
- '3.12'
2727
name: Windows, SQLite, Python ${{ matrix.python-version }}
2828
steps:
2929
- name: Checkout

0 commit comments

Comments
 (0)