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.
2 parents e05f069 + 0dddea5 commit 53546a2Copy full SHA for 53546a2
.travis.yml
@@ -11,7 +11,7 @@ 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
+ if (($(echo "$DJANGO_VERSION <= 1.9" | bc -l))); then # DRF dropped 1.8 and 1.9 support at 3.7.0
15
pip install djangorestframework==3.6.4
16
fi
17
python setup.py develop
0 commit comments