Skip to content

Commit 7013264

Browse files
committed
Temporarily (perhaps permanently) removed support for DRF < 3.1. See issue #85
1 parent 340673f commit 7013264

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ like the following:
5353

5454
1. Python >= 2.7
5555
2. Django
56-
3. Django REST Framework >= 2.4
56+
3. Django REST Framework >= 3.1
5757

5858
## Installation
5959

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def get_package_data(package):
7272
package_data=get_package_data('rest_framework_json_api'),
7373
install_requires=[
7474
'django',
75-
'djangorestframework>=2.4.0',
75+
'djangorestframework>=3.1.0',
7676
'inflection>=0.3.0'
7777
],
7878
classifiers=[

tox.ini

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
[tox]
22
envlist =
3-
py{27,32,33}-django16-drf{24,30,31,32},
4-
py{27,32,33,34}-django17-drf{24,30,31,32},
5-
py{27,32,33,34}-django18-drf{24,30,31,32},
3+
py{27,32,33}-django16-drf{31,32},
4+
py{27,32,33,34}-django17-drf{31,32},
5+
py{27,32,33,34}-django18-drf{31,32},
66

77
[testenv]
88
deps =
99
django16: Django>=1.6,<1.7
1010
django17: Django>=1.7,<1.8
1111
django18: Django>=1.8,<1.9
12-
drf24: djangorestframework>=2.4,<2.5
13-
drf30: djangorestframework>=3.0,<3.1
1412
drf31: djangorestframework>=3.1,<3.2
1513
drf32: djangorestframework>=3.2
1614
-r{toxinidir}/requirements-development.txt

0 commit comments

Comments
 (0)