Skip to content

Commit da1bfc5

Browse files
committed
confirm Python 3.14 support
1 parent 10e7de2 commit da1bfc5

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
fail-fast: false
10-
max-parallel: 5
10+
max-parallel: 6
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.13']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.13', '3.14']
1313

1414
steps:
1515
- uses: actions/checkout@v3

docs/changelog.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ v5.0 (unreleased)
1010

1111
* Dropped support for Python 3.7 and Django < 4.2.
1212

13-
* Added support for Python 3.11, 3.12, 3.13.
13+
* Added support for Python 3.11, 3.12, 3.13, 3.14.
1414

15-
* Django 5.x support
15+
* Django 5.x and 6.0 support
1616

1717
v4.0 (2022-09-3)
1818
-----------------

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.11",
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.13",
28+
"Programming Language :: Python :: 3.14",
2829
"Framework :: Django",
2930
]
3031
requires-python = ">=3.8"

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ minversion = 4.0
33
envlist =
44
flake8
55
py3{8,9,10,11,12}-dj42
6-
py3{10,11,12}-dj{50}
7-
py3{10,11,12,13}-dj{51,52}
8-
py3{12,13}-dj{main}
6+
py3{10,11,12,13,14}-dj52
7+
py3{12,13,14}-dj60
8+
py3{12,13,14}-djmain
99
coverage
1010

1111
[gh-actions]
@@ -17,6 +17,7 @@ python =
1717
3.11: py311
1818
3.12: py312
1919
3.13: py313
20+
3.14: py314
2021

2122
[testenv]
2223
skipsdist = true
@@ -28,14 +29,14 @@ basepython =
2829
py311: python3.11
2930
py312: python3.12
3031
py313: python3.13
32+
py314: python3.14
3133
setenv =
3234
DJANGO_SETTINGS_MODULE = dbtemplates.test_settings
3335
deps =
3436
-r requirements/tests.txt
3537
dj42: Django>=4.2,<4.3
36-
dj50: Django>=5.0,<5.1
37-
dj51: Django>=5.1,<5.2
3838
dj52: Django>=5.2,<5.3
39+
dj60: Django>=6.0,<6.1
3940
djmain: https://github.com/django/django/archive/main.tar.gz#egg=django
4041

4142
commands =

0 commit comments

Comments
 (0)