diff --git a/docs/sections/changelog.rst b/docs/sections/changelog.rst index 0c5f0f6..aa770ef 100644 --- a/docs/sections/changelog.rst +++ b/docs/sections/changelog.rst @@ -8,6 +8,8 @@ All notable changes to this project will be documented in this file. Unreleased ========== +* Changed: Dropping support for Django versions before 1.8. + 0.6.0 ===== diff --git a/docs/sections/installation.rst b/docs/sections/installation.rst index bf18a0a..a910193 100644 --- a/docs/sections/installation.rst +++ b/docs/sections/installation.rst @@ -7,7 +7,7 @@ Requirements ============ * Python: ``2.7`` ``3.4`` ``3.5`` ``3.6`` -* Django: ``1.7`` ``1.8`` ``1.9`` ``1.10`` ``1.11`` ``2.0`` +* Django: ``1.8`` ``1.9`` ``1.10`` ``1.11`` ``2.0`` Quick Installation ================== diff --git a/tox.ini b/tox.ini index db00837..27d5ef0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist= - py27-django{17,18,19,110,111}, - py34-django{17,18,19,110,111,20}, + py27-django{18,19,110,111}, + py34-django{18,19,110,111,20}, py35-django{18,19,110,111,20}, py36-django{18,19,110,111,20}, @@ -15,7 +15,6 @@ deps = pytest-django pytest-flake8 pytest-cov - django17: django>=1.7,<1.8 django18: django>=1.8,<1.9 django19: django>=1.9,<1.10 django110: django>=1.10,<1.11