Drop Django 3.0, 3.1, 3.2. Drop Python 3.7.

This commit is contained in:
Mike Edmunds
2024-08-07 12:59:47 -07:00
parent 6cb1a8b4e9
commit 9c4cf001d0
9 changed files with 19 additions and 271 deletions

13
tox.ini
View File

@@ -6,7 +6,7 @@ envlist =
# Test lint, docs, earliest/latest Django first, to catch most errors early...
lint
django51-py312-all
django30-py37-all
django40-py38-all
docs
# ... then test all the other supported combinations:
# Django 5.1: Python 3.10, 3.11, and 3.12
@@ -18,13 +18,7 @@ envlist =
# Django 4.1: Python 3.8, 3.9, 3.10
django41-py{38,39,310,py38,py39}-all
# Django 4.0: Python 3.8, 3.9, 3.10
django40-py{38,39,310,py38,py39}-all
# Django 3.2: Python 3.6 (eol 2021-12-23), 3.7, 3.8, 3.9
django32-py{37,38,39,py38,py39}-all
# Django 3.1: Python 3.6 (eol 2021-12-23), 3.7, 3.8, 3.9 (added in 3.1.3)
django31-py{37,38,39,py38,py39}-all
# Django 3.0: Python 3.6 (eol 2021-12-23), 3.7, 3.8, 3.9 (added in 3.0.11)
django30-py{38,39,py38,py39}-all
django40-py{39,310,py38,py39}-all
# ... then prereleases (if available) and current development:
# Django 5.2 pre-release: Python 3.10, 3.11, 3.12 and 3.13
# django52-py{310,311,312,313}-all
@@ -41,9 +35,6 @@ args_are_paths = false
download = true
deps =
-rtests/requirements.txt
django30: django~=3.0.0
django31: django~=3.1.0
django32: django~=3.2.0
django40: django~=4.0.0
django41: django~=4.1.0
django42: django~=4.2.0