Skip to content

Commit be14cc9

Browse files
committed
Defaulting to 3.13 and ubuntu 24.04 on workflows
1 parent 6788577 commit be14cc9

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/QA.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ env:
77

88
jobs:
99
lint:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- uses: actions/checkout@v4
1313

1414
- name: Set up Python
1515
uses: actions/setup-python@v5
1616
with:
17-
# to update to 3.13 once it lands in GH image
18-
python-version: "3.12"
17+
python-version: "3.13"
1918
architecture: x64
2019

2120
- name: Install dependencies (and project)

.github/workflows/Tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [macos-13, windows-2022, ubuntu-22.04]
15+
os: [macos-13, windows-2022, ubuntu-24.04]
1616
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
@@ -38,7 +38,7 @@ jobs:
3838
run: inv coverage --args "-vvv"
3939

4040
- name: Upload coverage report to codecov
41-
if: matrix.os == 'ubuntu-22.04' && matrix.python == '3.11'
41+
if: matrix.os == 'ubuntu-24.04' && matrix.python == '3.13'
4242
uses: codecov/codecov-action@v4
4343
with:
4444
fail_ci_if_error: true

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
build:
77
os: ubuntu-24.04
88
tools:
9-
python: '3.12'
9+
python: '3.13'
1010

1111
# custom commands to run mkdocs build within hatch, as suggested by maintainer in
1212
# https://github.com/readthedocs/readthedocs.org/issues/10706

0 commit comments

Comments
 (0)