diff options
| author | Tom Christie | 2013-12-13 16:32:34 +0000 | 
|---|---|---|
| committer | Tom Christie | 2013-12-13 16:32:34 +0000 | 
| commit | 9c41c007afc71c899306bcb02e40bdfc36b09146 (patch) | |
| tree | ca0da04aed0c1b96ddf14a801dc54b5a72a72461 /.travis.yml | |
| parent | ed931b90ae9e72f963673e6e188b1802a5a65360 (diff) | |
| parent | ca244ad614e2f6fb4fef1dc9987be996d2624303 (diff) | |
| download | django-rest-framework-9c41c007afc71c899306bcb02e40bdfc36b09146.tar.bz2 | |
Merge branch 'master' into 2.4.0
Conflicts:
	.travis.yml
	docs/api-guide/routers.md
	docs/topics/release-notes.md
	rest_framework/compat.py
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 456f8e9c..b75a80c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,14 +7,14 @@ python:    - "3.3"  env: -  - DJANGO="https://www.djangoproject.com/download/1.6a1/tarball/" -  - DJANGO="django==1.5.1 --use-mirrors" -  - DJANGO="django==1.4.5 --use-mirrors" +  - DJANGO="django==1.6.1" +  - DJANGO="django==1.5.5" +  - DJANGO="django==1.4.10"  install:    - pip install $DJANGO -  - pip install defusedxml==0.3 --use-mirrors -  - pip install django-filter==0.6 --use-mirrors +  - pip install defusedxml==0.3 +  - pip install django-filter==0.6    - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install oauth2==1.5.211 --use-mirrors; fi"    - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth-plus==2.0 --use-mirrors; fi"    - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth2-provider==0.2.4 --use-mirrors; fi" @@ -27,6 +27,6 @@ script:  matrix:    exclude:      - python: "3.2" -      env: DJANGO="django==1.4.5 --use-mirrors" +      env: DJANGO="django==1.4.10"      - python: "3.3" -      env: DJANGO="django==1.4.5 --use-mirrors" +      env: DJANGO="django==1.4.10"  | 
