Skip to content
This repository was archived by the owner on Jan 11, 2021. It is now read-only.

Commit 102d22e

Browse files
felixxmAlexander Gaevsky
authored andcommitted
Added support for Django 2.1 and DRF 3.9.
1 parent 0a7c6ce commit 102d22e

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Django==2.0.4
2-
djangorestframework==3.8.2
1+
Django==2.1.3
2+
djangorestframework==3.9.0
33
coreapi==2.3.3
44
openapi-codec==1.3.2
55
simplejson==3.9.0
@@ -17,4 +17,4 @@ mkdocs==0.15.3
1717
dj_database_url==0.5.0
1818
psycopg2==2.7.4
1919
gunicorn==19.8.0
20-
whitenoise==3.3.1
20+
whitenoise==3.3.1

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
'Framework :: Django :: 1.10',
6767
'Framework :: Django :: 1.11',
6868
'Framework :: Django :: 2.0',
69+
'Framework :: Django :: 2.1',
6970
'Intended Audience :: Developers',
7071
'License :: OSI Approved :: BSD License',
7172
'Operating System :: OS Independent',

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ envlist =
55
{py27,py36}-django{18,19,110,111}-drf{35,36}
66
{py27,py36}-django{110,111}-drf{37,38}
77
{py36}-django{2}-drf{37,38}
8+
{py36}-django{21}-drf{39}
89
lint
910

1011
[testenv]
@@ -19,11 +20,13 @@ deps =
1920
drf36: djangorestframework>=3.6.0,<3.7
2021
drf37: djangorestframework>=3.7.0,<3.8
2122
drf38: djangorestframework>=3.8.0,<3.9
23+
drf39: djangorestframework>=3.9.0,<3.10
2224
django18: Django>=1.8,<1.9
2325
django19: Django>=1.9,<1.10
2426
django110: Django>=1.10,<1.11
2527
django111: Django>=1.11,<2.0
2628
django2: Django>=2.0,<2.1
29+
django21: Django>=2.1,<2.2
2730

2831
[testenv:latest]
2932
commands = coverage run runtests.py

0 commit comments

Comments
 (0)