Skip to content

Commit 24204e5

Browse files
authored
move more ci onto Python 3.14 (#5660)
1 parent 1e00af5 commit 24204e5

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/benches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/[email protected]
2121
- uses: actions/setup-python@v6
2222
with:
23-
python-version: "3.13"
23+
python-version: "3.14"
2424
- uses: dtolnay/rust-toolchain@stable
2525
with:
2626
components: rust-src

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
- uses: actions/[email protected]
1313
- uses: actions/setup-python@v6
1414
with:
15-
python-version: '3.13'
15+
python-version: '3.14'
1616
- run: python -m pip install --upgrade pip && pip install nox[uv]
1717
- run: nox -s check-changelog

.github/workflows/ci-cache-warmup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/[email protected]
1313
- uses: actions/setup-python@v6
1414
with:
15-
python-version: "3.13"
15+
python-version: "3.14"
1616
- uses: dtolnay/rust-toolchain@stable
1717
with:
1818
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/[email protected]
2121
- uses: actions/setup-python@v6
2222
with:
23-
python-version: "3.13"
23+
python-version: "3.14"
2424
- run: python -m pip install --upgrade pip && pip install nox[uv]
2525
- uses: dtolnay/rust-toolchain@stable
2626
with:
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/[email protected]
4242
- uses: actions/setup-python@v6
4343
with:
44-
python-version: "3.13"
44+
python-version: "3.14"
4545
- name: resolve MSRV
4646
id: resolve-msrv
4747
run: echo MSRV=`python -c 'import tomllib; print(tomllib.load(open("Cargo.toml", "rb"))["workspace"]["package"]["rust-version"])'` >> $GITHUB_OUTPUT
@@ -54,7 +54,7 @@ jobs:
5454
- uses: actions/[email protected]
5555
- uses: actions/setup-python@v6
5656
with:
57-
python-version: "3.13"
57+
python-version: "3.14"
5858
- name: Fetch merge base
5959
id: fetch_merge_base
6060
uses: ./.github/actions/fetch-merge-base
@@ -76,7 +76,7 @@ jobs:
7676
components: rust-src
7777
- uses: actions/setup-python@v6
7878
with:
79-
python-version: "3.13"
79+
python-version: "3.14"
8080
- uses: Swatinem/rust-cache@v2
8181
with:
8282
save-if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
@@ -393,7 +393,7 @@ jobs:
393393
- uses: actions/[email protected]
394394
- uses: actions/setup-python@v6
395395
with:
396-
python-version: "3.13"
396+
python-version: "3.14"
397397
- uses: Swatinem/rust-cache@v2
398398
with:
399399
save-if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
@@ -414,7 +414,7 @@ jobs:
414414
- uses: actions/[email protected]
415415
- uses: actions/setup-python@v6
416416
with:
417-
python-version: "3.13"
417+
python-version: "3.14"
418418
- uses: Swatinem/rust-cache@v2
419419
with:
420420
save-if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
@@ -436,7 +436,7 @@ jobs:
436436
- uses: actions/[email protected]
437437
- uses: actions/setup-python@v6
438438
with:
439-
python-version: "3.13"
439+
python-version: "3.14"
440440
- uses: Swatinem/rust-cache@v2
441441
with:
442442
save-if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
@@ -539,7 +539,7 @@ jobs:
539539
- uses: actions/[email protected]
540540
- uses: actions/setup-python@v6
541541
with:
542-
python-version: "3.13"
542+
python-version: "3.14"
543543
- uses: Swatinem/rust-cache@v2
544544
with:
545545
save-if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
@@ -563,7 +563,7 @@ jobs:
563563
- uses: actions/[email protected]
564564
- uses: actions/setup-python@v6
565565
with:
566-
python-version: "3.13"
566+
python-version: "3.14"
567567
- uses: Swatinem/rust-cache@v2
568568
with:
569569
save-if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'CI-save-pr-cache') }}
@@ -608,7 +608,7 @@ jobs:
608608
- uses: actions/[email protected]
609609
- uses: actions/setup-python@v6
610610
with:
611-
python-version: "3.13"
611+
python-version: "3.14"
612612
- uses: Swatinem/rust-cache@v2
613613
with:
614614
workspaces: examples/maturin-starter
@@ -638,7 +638,7 @@ jobs:
638638
- uses: actions/[email protected]
639639
- uses: actions/setup-python@v6
640640
with:
641-
python-version: "3.13"
641+
python-version: "3.14"
642642
- uses: dtolnay/rust-toolchain@stable
643643
with:
644644
targets: x86_64-pc-windows-gnu,x86_64-pc-windows-msvc
@@ -692,7 +692,7 @@ jobs:
692692
components: rust-src
693693
- uses: actions/setup-python@v6
694694
with:
695-
python-version: "3.13"
695+
python-version: "3.14"
696696
architecture: ${{ matrix.platform.python-architecture }}
697697
- uses: Swatinem/rust-cache@v2
698698
with:
@@ -713,7 +713,7 @@ jobs:
713713
components: rust-src
714714
- uses: actions/setup-python@v6
715715
with:
716-
python-version: "3.13"
716+
python-version: "3.14"
717717
- run: python -m pip install --upgrade pip && pip install nox[uv]
718718
- run: nox -s test-introspection
719719

.github/workflows/coverage-pr-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/[email protected]
1616
- uses: actions/setup-python@v6
1717
with:
18-
python-version: '3.13'
18+
python-version: '3.14'
1919
- name: Fetch merge base
2020
id: fetch_merge_base
2121
uses: ./.github/actions/fetch-merge-base

.github/workflows/netlify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/[email protected]
2525
- uses: actions/setup-python@v6
2626
with:
27-
python-version: "3.13"
27+
python-version: "3.14"
2828

2929
- uses: dtolnay/rust-toolchain@nightly
3030

0 commit comments

Comments
 (0)