Skip to content

Commit 83e3a0a

Browse files
committed
Dropped support for Django 4.0
Its EOL was passed a few months ago (April 1st); see https://www.djangoproject.com/download/#supported-versions. Django 3.2 still has (extended) support, as it's an LTS version.
1 parent ca1d2c6 commit 83e3a0a

File tree

6 files changed

+2
-11
lines changed

6 files changed

+2
-11
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
15-
django-version: ['3.2', '4.0', '4.1', 'main']
15+
django-version: ['3.2', '4.1', 'main']
1616

1717
exclude:
1818
- python-version: '3.8'
@@ -23,13 +23,9 @@ jobs:
2323

2424
- python-version: '3.11'
2525
django-version: '3.2'
26-
- python-version: '3.11'
27-
django-version: '4.0'
2826

2927
- python-version: '3.12-dev'
3028
django-version: '3.2'
31-
- python-version: '3.12-dev'
32-
django-version: '4.0'
3329

3430
services:
3531

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Unreleased
1212
- Support Indonesian translation (gh-1198)
1313
- Support Urdu translation (gh-1199)
1414
- Dropped support for Python 3.7, which reached end-of-life on 2023-06-27 (gh-1202)
15+
- Dropped support for Django 4.0, which reached end-of-life on 2023-04-01 (gh-1202)
1516

1617
3.3.0 (2023-03-08)
1718
------------------

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ This app supports the following combinations of Django and Python:
4242
Django Python
4343
========== ========================
4444
3.2 3.8, 3.9, 3.10
45-
4.0 3.8, 3.9, 3.10
4645
4.1 3.8, 3.9, 3.10, 3.11, 3.12-dev
4746
main 3.10, 3.11, 3.12-dev
4847
========== ========================

docs/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ This app supports the following combinations of Django and Python:
4242
Django Python
4343
========== =======================
4444
3.2 3.8, 3.9, 3.10
45-
4.0 3.8, 3.9, 3.10
4645
4.1 3.8, 3.9, 3.10, 3.11, 3.12-dev
4746
main 3.10, 3.11, 3.12-dev
4847
========== =======================

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"Intended Audience :: Developers",
3838
"Framework :: Django",
3939
"Framework :: Django :: 3.2",
40-
"Framework :: Django :: 4.0",
4140
"Framework :: Django :: 4.1",
4241
"Programming Language :: Python",
4342
"Programming Language :: Python :: 3",

tox.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tox]
22
envlist =
33
py{38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
4-
py{38,39,310}-dj40-{sqlite3,postgres,mysql,mariadb},
54
py{38,39,310,311,312}-dj41-{sqlite3,postgres,mysql,mariadb},
65
py{310,311,312}-djmain-{sqlite3,postgres,mysql,mariadb},
76
docs,
@@ -18,7 +17,6 @@ python =
1817
[gh-actions:env]
1918
DJANGO =
2019
3.2: dj32
21-
4.0: dj40
2220
4.1: dj41
2321
main: djmain
2422

@@ -32,7 +30,6 @@ exclude = __init__.py,simple_history/registry_tests/migration_test_app/migration
3230
deps =
3331
-rrequirements/test.txt
3432
dj32: Django>=3.2,<3.3
35-
dj40: Django>=4.0,<4.1
3633
dj41: Django>=4.1,<4.2
3734
djmain: https://github.com/django/django/tarball/main
3835
postgres: -rrequirements/postgres.txt

0 commit comments

Comments
 (0)