Skip to content

Commit f3ea5b6

Browse files
cclaussMikeMcC399
authored andcommitted
build: test on Python 3.14 release candidate 3
Python v3.14 -- October 7th * https://www.python.org/download/pre-releases * https://www.python.org/downloads/release/python-3140rc3 PR-URL: #59983 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Stewart X Addison <sxa@redhat.com>
1 parent 2358296 commit f3ea5b6

13 files changed

+29
-13
lines changed

.github/workflows/build-tarball.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
cancel-in-progress: true
3131

3232
env:
33-
PYTHON_VERSION: '3.12'
33+
PYTHON_VERSION: '3.14'
3434
FLAKY_TESTS: keep_retrying
3535

3636
permissions:
@@ -48,6 +48,7 @@ jobs:
4848
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
4949
with:
5050
python-version: ${{ env.PYTHON_VERSION }}
51+
allow-prereleases: true
5152
- name: Environment Information
5253
run: npx envinfo
5354
- name: Make tarball
@@ -79,6 +80,7 @@ jobs:
7980
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
8081
with:
8182
python-version: ${{ env.PYTHON_VERSION }}
83+
allow-prereleases: true
8284
- name: Set up sccache
8385
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
8486
with:

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
cancel-in-progress: true
3535

3636
env:
37-
PYTHON_VERSION: '3.12'
37+
PYTHON_VERSION: '3.14'
3838
FLAKY_TESTS: keep_retrying
3939
CC: sccache clang
4040
CXX: sccache clang++
@@ -55,6 +55,7 @@ jobs:
5555
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5656
with:
5757
python-version: ${{ env.PYTHON_VERSION }}
58+
allow-prereleases: true
5859
- name: Set up sccache
5960
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
6061
with:

.github/workflows/coverage-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
cancel-in-progress: true
3535

3636
env:
37-
PYTHON_VERSION: '3.12'
37+
PYTHON_VERSION: '3.14'
3838
FLAKY_TESTS: keep_retrying
3939
CC: sccache clang
4040
CXX: sccache clang++
@@ -55,6 +55,7 @@ jobs:
5555
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5656
with:
5757
python-version: ${{ env.PYTHON_VERSION }}
58+
allow-prereleases: true
5859
- name: Set up sccache
5960
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
6061
with:

.github/workflows/coverage-windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
cancel-in-progress: true
3535

3636
env:
37-
PYTHON_VERSION: '3.12'
37+
PYTHON_VERSION: '3.14'
3838
FLAKY_TESTS: keep_retrying
3939

4040
permissions:
@@ -52,6 +52,7 @@ jobs:
5252
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5353
with:
5454
python-version: ${{ env.PYTHON_VERSION }}
55+
allow-prereleases: true
5556
- name: Install deps
5657
run: choco install nasm
5758
- name: Environment Information

.github/workflows/daily-wpt-fyi.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- cron: 30 0 * * *
1414

1515
env:
16-
PYTHON_VERSION: '3.12'
16+
PYTHON_VERSION: '3.14'
1717

1818
permissions:
1919
contents: read
@@ -42,6 +42,7 @@ jobs:
4242
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
4343
with:
4444
python-version: ${{ env.PYTHON_VERSION }}
45+
allow-prereleases: true
4546
- name: Environment Information
4647
run: npx envinfo
4748

.github/workflows/lint-release-proposal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
env:
13-
PYTHON_VERSION: '3.12'
13+
PYTHON_VERSION: '3.14'
1414
NODE_VERSION: lts/*
1515

1616
permissions:

.github/workflows/linters.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: true
1515

1616
env:
17-
PYTHON_VERSION: '3.12'
17+
PYTHON_VERSION: '3.14'
1818
NODE_VERSION: lts/*
1919

2020
permissions:
@@ -47,6 +47,7 @@ jobs:
4747
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
4848
with:
4949
python-version: ${{ env.PYTHON_VERSION }}
50+
allow-prereleases: true
5051
- name: Environment Information
5152
run: npx envinfo
5253
- name: Lint C/C++ files
@@ -67,6 +68,7 @@ jobs:
6768
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
6869
with:
6970
python-version: ${{ env.PYTHON_VERSION }}
71+
allow-prereleases: true
7072
- name: Environment Information
7173
run: npx envinfo
7274
- name: Format C/C++ files
@@ -149,6 +151,7 @@ jobs:
149151
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
150152
with:
151153
python-version: ${{ env.PYTHON_VERSION }}
154+
allow-prereleases: true
152155
- name: Environment Information
153156
run: npx envinfo
154157
- name: Lint Python
@@ -166,6 +169,7 @@ jobs:
166169
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
167170
with:
168171
python-version: ${{ env.PYTHON_VERSION }}
172+
allow-prereleases: true
169173
- name: Environment Information
170174
run: npx envinfo
171175
- name: Lint YAML

.github/workflows/test-internet.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ concurrency:
3131
cancel-in-progress: true
3232

3333
env:
34-
PYTHON_VERSION: '3.12'
34+
PYTHON_VERSION: '3.14'
3535
FLAKY_TESTS: keep_retrying
3636
CC: sccache clang
3737
CXX: sccache clang++
@@ -52,6 +52,7 @@ jobs:
5252
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5353
with:
5454
python-version: ${{ env.PYTHON_VERSION }}
55+
allow-prereleases: true
5556
- name: Set up sccache
5657
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
5758
with:

.github/workflows/test-linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ concurrency:
2727
cancel-in-progress: true
2828

2929
env:
30-
PYTHON_VERSION: '3.12'
30+
PYTHON_VERSION: '3.14'
3131
FLAKY_TESTS: keep_retrying
3232
CC: sccache clang
3333
CXX: sccache clang++
@@ -53,6 +53,7 @@ jobs:
5353
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5454
with:
5555
python-version: ${{ env.PYTHON_VERSION }}
56+
allow-prereleases: true
5657
- name: Set up sccache
5758
uses: Mozilla-Actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9
5859
with:

.github/workflows/test-macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ concurrency:
3131
cancel-in-progress: true
3232

3333
env:
34-
PYTHON_VERSION: '3.12'
34+
PYTHON_VERSION: '3.14'
3535
XCODE_VERSION: '16.1'
3636
FLAKY_TESTS: keep_retrying
3737

@@ -57,6 +57,7 @@ jobs:
5757
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
5858
with:
5959
python-version: ${{ env.PYTHON_VERSION }}
60+
allow-prereleases: true
6061
- name: Set up Xcode ${{ env.XCODE_VERSION }}
6162
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
6263
- name: Set up sccache

0 commit comments

Comments
 (0)