Skip to content

Commit 5c4b1b9

Browse files
committed
Remove end of life Djangos from the test matrix
Django 2.0 went end of life April 1, 2019. Django 2.1 went end of life December 2, 2019. These version are no longer receiving bug fixes include for security issues. Their use is not recommended. By removing these version it will reduce total time to run the full test matrix, allowing for faster developing.
1 parent 1948d33 commit 5c4b1b9

File tree

4 files changed

+7
-20
lines changed

4 files changed

+7
-20
lines changed

.travis.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,6 @@ matrix:
1515
env: TOXENV=py36-dj111
1616
- python: 3.7
1717
env: TOXENV=py37-dj111
18-
- python: 3.5
19-
env: TOXENV=py35-dj20
20-
- python: 3.6
21-
env: TOXENV=py36-dj20
22-
- python: 3.7
23-
env: TOXENV=py37-dj20
24-
- python: 3.5
25-
env: TOXENV=py35-dj21
26-
- python: 3.6
27-
env: TOXENV=py36-dj21
28-
- python: 3.7
29-
env: TOXENV=py37-dj21
3018
- python: 3.5
3119
env: TOXENV=py35-dj22
3220
- python: 3.6

docs/changes.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change log
22
==========
33

4+
UNRELEASED
5+
----------
6+
7+
* Removed support for end of life Django 2.0 and 2.1.
8+
49
2.1 (2019-11-12)
510
----------------
611

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ def readall(path):
3131
"Environment :: Web Environment",
3232
"Framework :: Django",
3333
"Framework :: Django :: 1.11",
34-
"Framework :: Django :: 2.0",
35-
"Framework :: Django :: 2.1",
3634
"Framework :: Django :: 2.2",
3735
"Framework :: Django :: 3.0",
3836
"Intended Audience :: Developers",

tox.ini

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ envlist =
44
style
55
readme
66
py{35,36,37}-dj111
7-
py{35,36,37}-dj20
8-
py{35,36,37}-dj21
97
py{35,36,37}-dj22
108
py{36,37}-dj30
119
py{36,37}-djmaster
@@ -15,8 +13,6 @@ envlist =
1513
[testenv]
1614
deps =
1715
dj111: Django==1.11.*
18-
dj20: Django==2.0.*
19-
dj21: Django==2.1.*
2016
dj22: Django==2.2.*
2117
dj30: Django>=3.0b1,<3.1
2218
djmaster: https://github.com/django/django/archive/master.tar.gz
@@ -33,7 +29,7 @@ commands = make coverage TEST_ARGS='{posargs:tests}'
3329

3430
[testenv:postgresql]
3531
deps =
36-
Django==2.1.*
32+
Django==1.11.*
3733
coverage
3834
Jinja2
3935
html5lib
@@ -49,7 +45,7 @@ commands = make coverage TEST_ARGS='{posargs:tests}'
4945

5046
[testenv:mariadb]
5147
deps =
52-
Django==2.1.*
48+
Django==2.2.*
5349
coverage
5450
Jinja2
5551
html5lib

0 commit comments

Comments
 (0)