diff --git a/.travis.yml b/.travis.yml index f89e775310..760de55350 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,12 +5,10 @@ matrix: fast_finish: true include: - - { python: "3.5", env: DJANGO=1.11 } - { python: "3.5", env: DJANGO=2.0 } - { python: "3.5", env: DJANGO=2.1 } - { python: "3.5", env: DJANGO=2.2 } - - { python: "3.6", env: DJANGO=1.11 } - { python: "3.6", env: DJANGO=2.0 } - { python: "3.6", env: DJANGO=2.1 } - { python: "3.6", env: DJANGO=2.2 } diff --git a/README.md b/README.md index 8774bc854a..0852f3f51e 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,8 @@ There is a live example API for testing purposes, [available here][sandbox]. # Requirements -* Python (3.5, 3.6, 3.7) -* Django (1.11, 2.0, 2.1, 2.2) +* Python (3.5, 3.6, 3.7, 3.8) +* Django (2.0, 2.1, 2.2) We **highly recommend** and only officially support the latest patch release of each Python and Django series. diff --git a/setup.py b/setup.py index c9d6443d5b..ed3fd6a4d1 100755 --- a/setup.py +++ b/setup.py @@ -89,7 +89,6 @@ def get_version(package): 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', - 'Framework :: Django :: 1.11', 'Framework :: Django :: 2.0', 'Framework :: Django :: 2.1', 'Framework :: Django :: 2.2', diff --git a/tox.ini b/tox.ini index 587c469b1b..b9b9e74cc0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,5 @@ [tox] envlist = - {py35,py36}-django111, {py35,py36,py37}-django20, {py35,py36,py37}-django21 {py35,py36,py37}-django22 @@ -9,7 +8,6 @@ envlist = [travis:env] DJANGO = - 1.11: django111 2.0: django20 2.1: django21 2.2: django22 @@ -22,7 +20,6 @@ setenv = PYTHONDONTWRITEBYTECODE=1 PYTHONWARNINGS=once deps = - django111: Django>=1.11,<2.0 django20: Django>=2.0,<2.1 django21: Django>=2.1,<2.2 django22: Django>=2.2,<3.0