From 4878df6479e259b5adf8dac2529104fae3fa88f9 Mon Sep 17 00:00:00 2001 From: "Asif Saif Uddin (Auvi)" Date: Thu, 7 Nov 2019 18:20:31 +0600 Subject: [PATCH] time to say goodbye to django 1.11 --- .travis.yml | 2 -- README.md | 4 ++-- setup.py | 1 - tox.ini | 3 --- 4 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index f89e77531..760de5535 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 8774bc854..3f5971fcc 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, 38) +* 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 c9d6443d5..ed3fd6a4d 100755 --- a/setup.py +++ b/setup.py @@ -89,7 +89,6 @@ setup( '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 587c469b1..b9b9e74cc 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