Skip to content

Commit f1e42e4

Browse files
committed
chore(ci): bump python to 3.14 in the ci
1 parent 58ee9e9 commit f1e42e4

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
submodules: true
20-
- name: Set up Python 3.11
20+
- name: Set up Python 3.14
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: "3.11"
23+
python-version: "3.14"
2424
- uses: pre-commit/[email protected]
2525
with:
2626
extra_args: --all-files
@@ -41,6 +41,7 @@ jobs:
4141
- "3.11"
4242
- "3.12"
4343
- "3.13"
44+
- "3.14"
4445
pytest-version:
4546
- ">=8.1.1"
4647

.github/workflows/codspeed.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
env:
10-
PYTHON_VERSION: "3.12"
10+
PYTHON_VERSION: "3.14"
1111
SHARDS: 4
1212

1313
jobs:
@@ -20,12 +20,12 @@ jobs:
2020
name: "Run ${{ matrix.mode }} benchmarks (Shard #${{ matrix.shard }})"
2121
runs-on: ${{ matrix.mode == 'instrumentation' && 'ubuntu-24.04' || 'codspeed-macro' }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
submodules: "recursive"
2626
- name: Install required-version defined in uv.toml
27-
uses: astral-sh/setup-uv@v5
28-
- uses: actions/setup-python@v2
27+
uses: astral-sh/setup-uv@v7
28+
- uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ env.PYTHON_VERSION }}
3131
- name: Install local version of pytest-codspeed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
version: "0.5.20"
4949
- uses: actions/setup-python@v2
5050
with:
51-
python-version: "3.12"
51+
python-version: "3.14"
5252
- name: Build py3-none-any wheel
5353
env:
5454
PYTEST_CODSPEED_SKIP_EXTENSION_BUILD: "1"
@@ -70,7 +70,7 @@ jobs:
7070
version: "0.5.20"
7171
- uses: actions/setup-python@v2
7272
with:
73-
python-version: "3.12"
73+
python-version: "3.14"
7474
- name: Build the source dist
7575
run: uv build --sdist --out-dir dist/
7676

@@ -97,7 +97,7 @@ jobs:
9797
version: "0.5.20"
9898
- uses: actions/setup-python@v2
9999
with:
100-
python-version: "3.12"
100+
python-version: "3.14"
101101

102102
- uses: actions/download-artifact@v4
103103
with:

0 commit comments

Comments
 (0)