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

Commit

Permalink
Added support for Django 2.1 and DRF 3.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixxm authored and Alexander Gaevsky committed Nov 20, 2018
1 parent 0a7c6ce commit 102d22e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==2.0.4
djangorestframework==3.8.2
Django==2.1.3
djangorestframework==3.9.0
coreapi==2.3.3
openapi-codec==1.3.2
simplejson==3.9.0
Expand All @@ -17,4 +17,4 @@ mkdocs==0.15.3
dj_database_url==0.5.0
psycopg2==2.7.4
gunicorn==19.8.0
whitenoise==3.3.1
whitenoise==3.3.1
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ envlist =
{py27,py36}-django{18,19,110,111}-drf{35,36}
{py27,py36}-django{110,111}-drf{37,38}
{py36}-django{2}-drf{37,38}
{py36}-django{21}-drf{39}
lint

[testenv]
Expand All @@ -19,11 +20,13 @@ deps =
drf36: djangorestframework>=3.6.0,<3.7
drf37: djangorestframework>=3.7.0,<3.8
drf38: djangorestframework>=3.8.0,<3.9
drf39: djangorestframework>=3.9.0,<3.10
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<2.0
django2: Django>=2.0,<2.1
django21: Django>=2.1,<2.2

[testenv:latest]
commands = coverage run runtests.py
Expand Down

0 comments on commit 102d22e

Please sign in to comment.