Skip to content

Commit f8885b0

Browse files
Drop Django < 4.2 support (#481)
Agent-Logs-Url: https://github.com/fabiocaccamo/django-admin-interface/sessions/22137723-dc30-49e9-8976-5e1074528d6f Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: fabiocaccamo <1035294+fabiocaccamo@users.noreply.github.com>
1 parent 361d7a0 commit f8885b0

4 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/test-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
id: create_matrix
2424
with:
2525
matrix: |
26-
python-version {3.10}, django-version {4.0, 4.1, 4.2, 5.0, 5.1, 5.2}, database {sqlite, postgres}
27-
python-version {3.11}, django-version {4.1, 4.2, 5.0, 5.1, 5.2}, database {sqlite, postgres}
26+
python-version {3.10}, django-version {4.2, 5.0, 5.1, 5.2}, database {sqlite, postgres}
27+
python-version {3.11}, django-version {4.2, 5.0, 5.1, 5.2}, database {sqlite, postgres}
2828
python-version {3.12}, django-version {4.2, 5.0, 5.1, 5.2, 6.0}, database {sqlite, postgres}
2929
python-version {3.13}, django-version {5.1, 5.2, 6.0}, database {sqlite, postgres}
3030
python-version {3.14}, django-version {5.2, 6.0}, database {sqlite, postgres}

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ classifiers = [
2222
"Development Status :: 5 - Production/Stable",
2323
"Environment :: Web Environment",
2424
"Framework :: Django",
25-
"Framework :: Django :: 4.0",
26-
"Framework :: Django :: 4.1",
2725
"Framework :: Django :: 4.2",
2826
"Framework :: Django :: 5.0",
2927
"Framework :: Django :: 5.1",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
django >= 2.2
1+
django >= 4.2
22
django-colorfield == 0.14.0

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py310-{dj40,dj41,dj42,dj50,dj51,dj52}-{sqlite,postgres},
4-
py311-{dj41,dj42,dj50,dj51,dj52}-{sqlite,postgres},
3+
py310-{dj42,dj50,dj51,dj52}-{sqlite,postgres},
4+
py311-{dj42,dj50,dj51,dj52}-{sqlite,postgres},
55
py312-{dj42,dj50,dj51,dj52,dj60}-{sqlite,postgres},
66
py313-{dj51,dj52,dj60}-{sqlite,postgres},
77
py314-{dj52,dj60}-{sqlite,postgres},
@@ -23,8 +23,6 @@ setenv =
2323
postgres: DATABASE_ENGINE=postgres
2424

2525
deps =
26-
dj40: Django == 4.0.*
27-
dj41: Django == 4.1.*
2826
dj42: Django == 4.2.*
2927
dj50: Django == 5.0.*
3028
dj51: Django == 5.1.*

0 commit comments

Comments
 (0)