Skip to content

Commit fa2d882

Browse files
hramezanijeking3
authored andcommitted
Dropped support for Django 2.2
1 parent b6c473e commit fa2d882

File tree

6 files changed

+2
-9
lines changed

6 files changed

+2
-9
lines changed

.github/workflows/test.yml

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

1717
exclude:
1818
- python-version: '3.7'
1919
django-version: '4.0'
2020
- python-version: '3.7'
2121
django-version: 'main'
22-
- python-version: '3.10'
23-
django-version: '2.2'
2422
- python-version: '3.10'
2523
django-version: '3.1'
2624

CHANGES.rst

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Full list of changes:
3333
- Dropped support for Python 3.6, which reached end-of-life on 2021-12-23 (gh-946)
3434
- RecordModels now support a ``no_db_index`` setting, to drop indices in historical models, default stays the same (gh-720)
3535
- Support change reason formula feature. Change reason formula can be defined by overriding ``get_change_reason_for_object`` method after subclassing ``HistoricalRecords``
36+
- Dropped support for Django 2.2 (gh-968)
3637

3738
3.0.0 (2021-04-16)
3839
------------------

README.rst

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ This app supports the following combinations of Django and Python:
4141
========== ========================
4242
Django Python
4343
========== ========================
44-
2.2 3.7, 3.8, 3.9
4544
3.2 3.7, 3.8, 3.9, 3.10
4645
4.0 3.8, 3.9, 3.10
4746
========== ========================

docs/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ This app supports the following combinations of Django and Python:
4141
========== =======================
4242
Django Python
4343
========== =======================
44-
2.2 3.7, 3.8, 3.9
4544
3.2 3.7, 3.8, 3.9
4645
4.0 3.8, 3.9, 3.10
4746
========== =======================

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"Environment :: Web Environment",
2424
"Intended Audience :: Developers",
2525
"Framework :: Django",
26-
"Framework :: Django :: 2.2",
2726
"Framework :: Django :: 3.2",
2827
"Framework :: Django :: 4.0",
2928
"Programming Language :: Python",

tox.ini

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py{37,38,39}-dj22-{sqlite3,postgres,mysql,mariadb},
43
py{37,38,39,310}-dj32-{sqlite3,postgres,mysql,mariadb},
54
py{38,39,310}-dj{40,main}-{sqlite3,postgres,mysql,mariadb},
65
docs,
@@ -15,7 +14,6 @@ python =
1514

1615
[gh-actions:env]
1716
DJANGO =
18-
2.2: dj22
1917
3.2: dj32
2018
4.0: dj40
2119
main: djmain
@@ -29,7 +27,6 @@ exclude = __init__.py,simple_history/registry_tests/migration_test_app/migration
2927
[testenv]
3028
deps =
3129
-rrequirements/test.txt
32-
dj22: Django>=2.2,<2.3
3330
dj32: Django>=3.2,<3.3
3431
dj40: Django>=4.0,<4.1
3532
djmain: https://github.com/django/django/tarball/main

0 commit comments

Comments
 (0)