Skip to content

Commit ebde276

Browse files
committed
chore: switch CI to Ubuntu 24.04; add Python 3.13 and use it by default.
1 parent f4b69dd commit ebde276

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
TOX_PARALLEL_NO_SPINNER: 1
2020

2121
steps:
22-
- name: Switch to using Python 3.10 by default
22+
- name: Switch to using Python 3.13 by default
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.10"
25+
python-version: "3.13"
2626

2727
- name: Install tox
2828
run: >-

.github/workflows/tox.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
pre:
1717
name: pre
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
outputs:
2020
matrix: ${{ steps.generate_matrix.outputs.matrix }}
2121
steps:
@@ -24,15 +24,15 @@ jobs:
2424
uses: coactions/dynamic-matrix@v1
2525
with:
2626
min_python: "3.10"
27-
max_python: "3.12"
28-
default_python: "3.10" # used by jobs in other_names
27+
max_python: "3.13"
28+
default_python: "3.13" # used by jobs in other_names
2929
other_names: |
3030
lint
3131
pkg
3232
devel
3333
build:
3434
name: ${{ matrix.name }}
35-
runs-on: ubuntu-22.04
35+
runs-on: ubuntu-24.04
3636
needs: pre
3737
env:
3838
PYTEST_REQPASS: 14
@@ -65,7 +65,7 @@ jobs:
6565

6666
needs:
6767
- build
68-
runs-on: ubuntu-22.04
68+
runs-on: ubuntu-24.04
6969
steps:
7070
- name: Decide whether the needed jobs succeeded or failed
7171
uses: re-actors/alls-green@release/v1

0 commit comments

Comments
 (0)