Browse Source

testing in travis DRF<3 only with Django<1.8

Miroslav Shubernetskiy 10 years ago
parent
commit
fb4b375215
2 changed files with 8 additions and 7 deletions
  1. 3 3
      .travis.yml
  2. 5 4
      README.rst

+ 3 - 3
.travis.yml

@@ -6,12 +6,12 @@ python:
   - "pypy"
 
 env:
-  - "DRF='djangorestframework<3'"
-  - "DRF='djangorestframework>=3'"
+  - "$DJANGO_DRF='django<1.8' 'djangorestframework<3'"
+  - "$DJANGO_DRF='djangorestframework>=3'"
 
 # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
 install:
-  - pip install $DRF
+  - pip install $DJANGO_DRF
   - pip install -r requirements-dev.txt
   - pip freeze
 

+ 5 - 4
README.rst

@@ -21,10 +21,11 @@ within the framework. That is the purpose of this project.
 Requirements
 ------------
 
-* Python 2.7+
-* Django 1.3+
-* Django REST Framework >= 2.2.5 (when bulk features were added to serializers)
-* Django REST Framework >= 3.0.0 (DRF-bulk supports both DRF2 and DRF3!)
+* Python>=2.7
+* Django>=1.3
+* Django REST Framework >= 3.0.0
+* REST Framework >= 2.2.5
+  (**only with** Django<1.8 since DRF<3 does not support Django1.8)
 
 Installing
 ----------