Skip to content

Commit 0a93294

Browse files
authored
GitHub Actions: Test on Python 3.14 release candidate 2 (#945)
* 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 * tox.ini: py314-django{52}
1 parent e25b949 commit 0a93294

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix: # https://docs.djangoproject.com/en/stable/faq/install/#what-python-version-can-i-use-with-django
1515
django-version: ["3.2", "4.2", "5.1", "5.2"]
16-
python-version: ['3.8','3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.11']
16+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.11']
1717
exclude:
1818
- django-version: "3.2"
1919
python-version: "3.11"
@@ -31,6 +31,9 @@ jobs:
3131
python-version: "3.8"
3232
- django-version: "5.2"
3333
python-version: "3.8"
34+
include:
35+
- django-version: "5.2"
36+
python-version: "3.14"
3437

3538
services:
3639
rabbitmq:
@@ -44,6 +47,7 @@ jobs:
4447
uses: useblacksmith/setup-python@v6
4548
with:
4649
python-version: ${{ matrix.python-version }}
50+
allow-prereleases: true
4751
- name: Install dependencies
4852
run: |
4953
python -m pip install --upgrade pip

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ python =
88
3.11: py311
99
3.12: py312
1010
3.13: py313
11+
3.14: py314
1112
pypy-3.10: pypy3
1213

1314
[gh-actions:env]
@@ -25,6 +26,7 @@ envlist =
2526
py311-django{42,51,52}
2627
py312-django{42,51,52}
2728
py313-django{52}
29+
py314-django{52}
2830
pypy3-django{32,42,51,52}
2931
flake8
3032
apicheck

0 commit comments

Comments
 (0)