diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03ff7c7..4d008df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,6 @@ jobs: - "3.14" tox-env: - "dj42" # LTS - - "dj50" - "dj52" # LTS - "dj60" - "djmain" diff --git a/README.rst b/README.rst index 7e2bb90..481c809 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/setup.py b/setup.py index 8624dc3..501d91c 100755 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/tox.ini b/tox.ini index 99b8f95..29dd525 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -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