Skip to content

Commit 3d3f90c

Browse files
committed
Drop support for Django 4.2
The project requires OperationCategory which got added in Django 5.1
1 parent 1f9bcb1 commit 3d3f90c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers = [
1515
"Programming Language :: Python :: 3.13",
1616
"Programming Language :: Python :: 3.14",
1717
"Framework :: Django",
18-
"Framework :: Django :: 4.2",
1918
"Framework :: Django :: 5.2",
2019
"Framework :: Django :: 6.0",
2120
]
@@ -29,6 +28,7 @@ build-backend = "poetry.core.masonry.api"
2928

3029
[tool.poetry.dependencies]
3130
python = ">=3.10"
31+
django = ">=5.1" # first version with OperationCategory
3232

3333
[tool.ruff]
3434
line-length = 120

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py{310,311}-dj{42}-pg{2,3}
43
py{310,311,312,313,314}-dj{52}-pg{2,3}
54
py{312,313,314}-dj{60}-pg{2,3}
65

@@ -23,7 +22,6 @@ deps=
2322
pytest-cov
2423
pg2: psycopg2>2.9
2524
pg3: psycopg>3.1
26-
dj42: https://github.com/django/django/archive/stable/4.2.x.tar.gz#egg=django
2725
dj52: https://github.com/django/django/archive/stable/5.2.x.tar.gz#egg=django
2826
dj60: https://github.com/django/django/archive/stable/6.0.x.tar.gz#egg=django
2927
commands=

0 commit comments

Comments
 (0)