time to say goodbye to django 1.11

This commit is contained in:
Asif Saif Uddin (Auvi) 2019-11-07 18:20:31 +06:00
parent 0d3d548aa5
commit 4878df6479
4 changed files with 2 additions and 8 deletions

View File

@ -5,12 +5,10 @@ matrix:
fast_finish: true fast_finish: true
include: include:
- { python: "3.5", env: DJANGO=1.11 }
- { python: "3.5", env: DJANGO=2.0 } - { python: "3.5", env: DJANGO=2.0 }
- { python: "3.5", env: DJANGO=2.1 } - { python: "3.5", env: DJANGO=2.1 }
- { python: "3.5", env: DJANGO=2.2 } - { 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.0 }
- { python: "3.6", env: DJANGO=2.1 } - { python: "3.6", env: DJANGO=2.1 }
- { python: "3.6", env: DJANGO=2.2 } - { python: "3.6", env: DJANGO=2.2 }

View File

@ -54,8 +54,8 @@ There is a live example API for testing purposes, [available here][sandbox].
# Requirements # Requirements
* Python (3.5, 3.6, 3.7) * Python (3.5, 3.6, 3.7, 38)
* Django (1.11, 2.0, 2.1, 2.2) * Django (2.0, 2.1, 2.2)
We **highly recommend** and only officially support the latest patch release of We **highly recommend** and only officially support the latest patch release of
each Python and Django series. each Python and Django series.

View File

@ -89,7 +89,6 @@ setup(
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Framework :: Django', 'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0', 'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1', 'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2', 'Framework :: Django :: 2.2',

View File

@ -1,6 +1,5 @@
[tox] [tox]
envlist = envlist =
{py35,py36}-django111,
{py35,py36,py37}-django20, {py35,py36,py37}-django20,
{py35,py36,py37}-django21 {py35,py36,py37}-django21
{py35,py36,py37}-django22 {py35,py36,py37}-django22
@ -9,7 +8,6 @@ envlist =
[travis:env] [travis:env]
DJANGO = DJANGO =
1.11: django111
2.0: django20 2.0: django20
2.1: django21 2.1: django21
2.2: django22 2.2: django22
@ -22,7 +20,6 @@ setenv =
PYTHONDONTWRITEBYTECODE=1 PYTHONDONTWRITEBYTECODE=1
PYTHONWARNINGS=once PYTHONWARNINGS=once
deps = deps =
django111: Django>=1.11,<2.0
django20: Django>=2.0,<2.1 django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2 django21: Django>=2.1,<2.2
django22: Django>=2.2,<3.0 django22: Django>=2.2,<3.0