We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886d909 commit 6125b96Copy full SHA for 6125b96
.travis.yml
@@ -11,6 +11,9 @@ install:
11
pip install -e .[test]
12
pip install psycopg2 # Required for Django postgres fields testing
13
pip install django==$DJANGO_VERSION
14
+ if [ "$DJANGO_VERSION" = "1.8" ]; then # DRF dropped 1.8 support at 3.7.0
15
+ pip install djangorestframework<3.7.0
16
+ fi
17
python setup.py develop
18
elif [ "$TEST_TYPE" = lint ]; then
19
pip install flake8
setup.py
@@ -10,7 +10,7 @@
10
f.read().decode('utf-8')).group(1)))
rest_framework_require = [
- 'djangorestframework>=3.6.3,<3.7.0',
+ 'djangorestframework>=3.6.3',
]
0 commit comments