Skip to content

Commit 9e79ac3

Browse files
authored
GitHub Actions: Test on Python 3.14 release candidate 2
Python v3.14 -- October 7th * https://www.python.org/download/pre-releases * https://www.python.org/downloads/release/python-3140rc2 * https://code.djangoproject.com/ticket/35844 > Django 5.2 will be the first version to support Python 3.14 GitHub Actions with tox: * https://docs.github.com/en/actions/tutorials/build-and-test-code/python#running-tests-with-tox
1 parent a135228 commit 9e79ac3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@ jobs:
1919
- "3.11"
2020
- "3.12"
2121
- "3.13"
22+
- "3.14"
2223

2324
steps:
2425
- uses: actions/checkout@v5
2526

2627
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2829
with:
2930
python-version: ${{ matrix.python-version }}
31+
allow-prereleases: true
3032

3133
- name: Set up Chrome
3234
uses: browser-actions/setup-chrome@v2
@@ -40,16 +42,15 @@ jobs:
4042
python -m pip install --upgrade tox
4143
4244
- name: Run tox targets for ${{ matrix.python-version }}
43-
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
44-
45+
run: tox run -e py
4546
lint:
4647
name: Lint
4748
runs-on: ubuntu-latest
4849
steps:
4950
- uses: actions/checkout@v5
5051

5152
- name: Set up Python
52-
uses: actions/setup-python@v5
53+
uses: actions/setup-python@v6
5354
with:
5455
python-version: "3.11"
5556

0 commit comments

Comments
 (0)