Skip to content

Commit a8493e4

Browse files
📦 Drop support for EOL django versions
1 parent e7d0c4a commit a8493e4

3 files changed

Lines changed: 3 additions & 10 deletions

File tree

dotgithub/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
python: ['3.12', '3.13']
21-
django: ['4.2', '5.2']
22-
exclude:
23-
- python: '3.13'
24-
django: '4.2'
21+
django: ['5.2']
2522

2623
name: Run the test suite (Python ${% templatetag openvariable %} matrix.python {% templatetag closevariable %}, Django ${% templatetag openvariable %} matrix.django {% templatetag closevariable %})
2724

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ keywords = ["TODO"]
1616
classifiers = [
1717
"Development Status :: 3 - Alpha",
1818
"Framework :: Django",
19-
"Framework :: Django :: 4.2",
2019
"Framework :: Django :: 5.2",
2120
"Intended Audience :: Developers",
2221
"Operating System :: Unix",
@@ -28,7 +27,7 @@ classifiers = [
2827
]
2928
requires-python = ">=3.12"
3029
dependencies = [
31-
"django>=4.2"
30+
"django>=5.2"
3231
]
3332

3433
[project.urls]

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py{312}-django{42}
43
py{312,313}-django{52}
54
ruff
65
docs
@@ -14,7 +13,6 @@ python =
1413

1514
[gh-actions:env]
1615
DJANGO =
17-
4.2: django42
1816
5.2: django52
1917

2018
[testenv]
@@ -25,10 +23,9 @@ extras =
2523
tests
2624
coverage
2725
deps =
28-
django42: Django~=4.2.0
2926
django52: Django~=5.2.0
3027
commands =
31-
py.test tests \
28+
pytest tests \
3229
--cov --cov-report xml:reports/coverage-{envname}.xml \
3330
{posargs}
3431

0 commit comments

Comments
 (0)