Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
- "3.14"
tox-env:
- "dj42" # LTS
- "dj50"
- "dj52" # LTS
- "dj60"
- "djmain"
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Automated code metrics:

* Free software: MIT license
* Documentation for the Click command line library: https://click.palletsprojects.com/en/stable/
* Compatible with Django 4.2, 5.0, 5.2 and 6.0 running on Python 3.10, 3.11, 3.12, 3.13 and 3.14
* 3.10+ required for Django 5.0 and above
* Compatible with Django 4.2, 5.2 and 6.0 running on Python 3.10, 3.11, 3.12, 3.13 and 3.14
* 3.10+ required for Django 5.2 and above
* 3.12+ required for Django 6.0 and above


Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist =
dj{42,50,52,60,main}
dj{42,52,60,main}

[gh-actions]
django =
4.2: dj42
5.0: dj50
5.2: dj52
6.0: dj60
main: djmain
Expand All @@ -19,7 +18,6 @@ setenv =
deps =
-rrequirements-test.txt
dj42: django>=4.2,<4.3
dj50: django>=5.0,<5.1
dj52: django>=5.2,<5.3
dj60: django>=6.0,<6.1
djmain: https://github.com/django/django/archive/main.tar.gz
Expand Down