mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-06-19 13:03:19 +03:00
Drop Django 2.1 and below. (#7225)
This commit is contained in:
parent
908f91d8ef
commit
86aa549832
|
@ -5,20 +5,12 @@ 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.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.1 }
|
|
||||||
- { python: "3.6", env: DJANGO=2.2 }
|
- { python: "3.6", env: DJANGO=2.2 }
|
||||||
- { python: "3.6", env: DJANGO=3.0 }
|
- { python: "3.6", env: DJANGO=3.0 }
|
||||||
- { python: "3.6", env: DJANGO=master }
|
- { python: "3.6", env: DJANGO=master }
|
||||||
|
|
||||||
- { python: "3.7", env: DJANGO=2.0 }
|
|
||||||
- { python: "3.7", env: DJANGO=2.1 }
|
|
||||||
- { python: "3.7", env: DJANGO=2.2 }
|
- { python: "3.7", env: DJANGO=2.2 }
|
||||||
- { python: "3.7", env: DJANGO=3.0 }
|
- { python: "3.7", env: DJANGO=3.0 }
|
||||||
- { python: "3.7", env: DJANGO=master }
|
- { python: "3.7", env: DJANGO=master }
|
||||||
|
|
|
@ -55,7 +55,7 @@ There is a live example API for testing purposes, [available here][sandbox].
|
||||||
# Requirements
|
# Requirements
|
||||||
|
|
||||||
* Python (3.5, 3.6, 3.7, 3.8)
|
* Python (3.5, 3.6, 3.7, 3.8)
|
||||||
* Django (1.11, 2.0, 2.1, 2.2, 3.0)
|
* Django (2.2, 3.0)
|
||||||
|
|
||||||
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.
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -82,17 +82,15 @@ setup(
|
||||||
author_email='tom@tomchristie.com', # SEE NOTE BELOW (*)
|
author_email='tom@tomchristie.com', # SEE NOTE BELOW (*)
|
||||||
packages=find_packages(exclude=['tests*']),
|
packages=find_packages(exclude=['tests*']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=["django>=1.11"],
|
install_requires=["django>=2.2"],
|
||||||
python_requires=">=3.5",
|
python_requires=">=3.5",
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'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.1',
|
|
||||||
'Framework :: Django :: 2.2',
|
'Framework :: Django :: 2.2',
|
||||||
|
'Framework :: Django :: 3.0',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
|
|
11
tox.ini
11
tox.ini
|
@ -1,18 +1,12 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
{py35,py36}-django111,
|
{py35,py36,py37}-django22,
|
||||||
{py35,py36,py37}-django20,
|
|
||||||
{py35,py36,py37}-django21
|
|
||||||
{py35,py36,py37}-django22
|
|
||||||
{py36,py37,py38}-django30,
|
{py36,py37,py38}-django30,
|
||||||
{py36,py37,py38}-djangomaster,
|
{py36,py37,py38}-djangomaster,
|
||||||
base,dist,lint,docs,
|
base,dist,lint,docs,
|
||||||
|
|
||||||
[travis:env]
|
[travis:env]
|
||||||
DJANGO =
|
DJANGO =
|
||||||
1.11: django111
|
|
||||||
2.0: django20
|
|
||||||
2.1: django21
|
|
||||||
2.2: django22
|
2.2: django22
|
||||||
3.0: django30
|
3.0: django30
|
||||||
master: djangomaster
|
master: djangomaster
|
||||||
|
@ -24,9 +18,6 @@ setenv =
|
||||||
PYTHONDONTWRITEBYTECODE=1
|
PYTHONDONTWRITEBYTECODE=1
|
||||||
PYTHONWARNINGS=once
|
PYTHONWARNINGS=once
|
||||||
deps =
|
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
|
django22: Django>=2.2,<3.0
|
||||||
django30: Django>=3.0,<3.1
|
django30: Django>=3.0,<3.1
|
||||||
djangomaster: https://github.com/django/django/archive/master.tar.gz
|
djangomaster: https://github.com/django/django/archive/master.tar.gz
|
||||||
|
|
Loading…
Reference in New Issue
Block a user