Skip to content

Commit d46fe6f

Browse files
hramezanijezdez
authored andcommitted
Remove Django 3.0 support.
1 parent b23bad4 commit d46fe6f

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
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
python-version: ['3.6', '3.7', '3.8', '3.9']
14-
django-version: ['2.2', '3.0', '3.1', 'main']
14+
django-version: ['2.2', '3.1', 'main']
1515

1616
exclude:
1717
- python-version: '3.6'

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Unreleased
1111
- Sort imports with isort (gh-751)
1212
- Queryset ``history.as_of`` speed improvements by calculating in the DB (gh-758)
1313
- Increase `black` and `isort` python version to 3.6
14+
- Remove Django 3.0 support
1415

1516
2.12.0 (2020-10-14)
1617
-------------------

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.6, 3.7, 3.8, 3.9
45-
3.0 3.6, 3.7, 3.8, 3.9
4645
3.1 3.6, 3.7, 3.8, 3.9
4746
========== =======================
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.6, 3.7, 3.8, 3.9
45-
3.0 3.6, 3.7, 3.8, 3.9
4645
3.1 3.6, 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.0",
2827
"Framework :: Django :: 3.1",
2928
"Programming Language :: Python",
3029
"Programming Language :: Python :: 3.6",

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{36,37,38,39}-dj{22,30,31}-{sqlite3,postgres,mysql,mariadb},
3+
py{36,37,38,39}-dj{22,31}-{sqlite3,postgres,mysql,mariadb},
44
py{38,39}-djmain-{sqlite3,postgres,mysql,mariadb},
55
docs,
66
lint
@@ -15,7 +15,6 @@ python =
1515
[gh-actions:env]
1616
DJANGO =
1717
2.2: dj22
18-
3.0: dj30
1918
3.1: dj31
2019
main: djmain
2120

@@ -29,7 +28,6 @@ exclude = __init__.py,simple_history/registry_tests/migration_test_app/migration
2928
deps =
3029
-rrequirements/test.txt
3130
dj22: Django>=2.2,<2.3
32-
dj30: Django>=3.0,<3.1
3331
dj31: Django>=3.1,<3.2
3432
djmain: https://github.com/django/django/tarball/main
3533
postgres: -rrequirements/postgres.txt

0 commit comments

Comments
 (0)