Skip to content

Commit aa1604a

Browse files
authored
Drop Python 3.8, add Django 6.0 (#71)
1 parent e5e3824 commit aa1604a

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/test_full.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,23 @@ jobs:
1616
runs-on: ubuntu-22.04
1717
strategy:
1818
matrix:
19-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
20-
django-version: ['4.2', '5.1', '5.2']
19+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
20+
django-version: ['4.2', '5.1', '5.2', '6.0']
2121
pydantic-version: ['2.5', '2.6', '2.7', '2.8', '2.9', '2.10', '2.11', '2.12']
2222
exclude:
23-
# Python 3.8 exclusions
24-
- pydantic-version: '2.11'
25-
python-version: '3.8'
26-
- pydantic-version: '2.12'
27-
python-version: '3.8'
28-
- django-version: '5.1'
29-
python-version: '3.8'
30-
- django-version: '5.2'
31-
python-version: '3.8'
3223
# Python 3.9 exclusions
3324
- django-version: '5.1'
3425
python-version: '3.9'
3526
- django-version: '5.2'
3627
python-version: '3.9'
28+
- django-version: '6.0'
29+
python-version: '3.9'
30+
# Python 3.10 exclusions
31+
- django-version: '6.0'
32+
python-version: '3.10'
33+
# Python 3.11 exclusions
34+
- django-version: '6.0'
35+
python-version: '3.11'
3736
# Python 3.13 exclusions
3837
- pydantic-version: '2.5'
3938
python-version: '3.13'

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,15 @@ classifiers = [
3535
"Framework :: Django :: 4.2",
3636
"Framework :: Django :: 5.1",
3737
"Framework :: Django :: 5.2",
38+
"Framework :: Django :: 6.0",
3839
"Framework :: AsyncIO",
3940
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
4041
"Topic :: Internet :: WWW/HTTP",
4142
]
4243

4344
requires = ["Django >=4.2", "pydantic >=2.5,<2.13"]
4445
description-file = "README.md"
45-
requires-python = ">=3.8"
46+
requires-python = ">=3.9"
4647

4748

4849
[tool.flit.metadata.urls]

0 commit comments

Comments
 (0)