Skip to content

Commit 7e1d0b6

Browse files
hramezanijeking3
authored andcommitted
Dropped support for Django 3.1
1 parent 14e6a9e commit 7e1d0b6

File tree

6 files changed

+3
-7
lines changed

6 files changed

+3
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
python-version: ['3.7', '3.8', '3.9', '3.10']
15-
django-version: ['2.2', '3.1', '3.2', '4.0', 'main']
15+
django-version: ['2.2', '3.2', '4.0', 'main']
1616

1717
exclude:
1818
- python-version: '3.7'

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Full list of changes:
2929
- Added support for Django 4.0 (gh-898)
3030
- Dropped support for Python 3.6, which reached end-of-life on 2021-12-23 (gh-946).
3131
- Fix bug with ``history.diff_against`` with non-editable fields (gh-923)
32+
- Dropped support for Django 3.1 (gh-952)
3233

3334
3.0.0 (2021-04-16)
3435
------------------

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
2.2 3.7, 3.8, 3.9
45-
3.1 3.7, 3.8, 3.9
4645
3.2 3.7, 3.8, 3.9, 3.10
4746
4.0 3.8, 3.9, 3.10
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
2.2 3.7, 3.8, 3.9
45-
3.1 3.7, 3.8, 3.9
4645
3.2 3.7, 3.8, 3.9
4746
========== =======================
4847

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"Intended Audience :: Developers",
2525
"Framework :: Django",
2626
"Framework :: Django :: 2.2",
27-
"Framework :: Django :: 3.1",
2827
"Framework :: Django :: 3.2",
2928
"Framework :: Django :: 4.0",
3029
"Programming Language :: Python",

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{37,38,39}-dj{22,31}-{sqlite3,postgres,mysql,mariadb},
3+
py{37,38,39}-dj22-{sqlite3,postgres,mysql,mariadb},
44
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
55
py{38,39,310}-dj{40,main}-{sqlite3,postgres,mysql,mariadb},
66
docs,
@@ -16,7 +16,6 @@ python =
1616
[gh-actions:env]
1717
DJANGO =
1818
2.2: dj22
19-
3.1: dj31
2019
3.2: dj32
2120
4.0: dj40
2221
main: djmain
@@ -31,7 +30,6 @@ exclude = __init__.py,simple_history/registry_tests/migration_test_app/migration
3130
deps =
3231
-rrequirements/test.txt
3332
dj22: Django>=2.2,<2.3
34-
dj31: Django>=3.1,<3.2
3533
dj32: Django>=3.2,<3.3
3634
dj40: Django>=4.0,<4.1
3735
djmain: https://github.com/django/django/tarball/main

0 commit comments

Comments
 (0)