aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorBruno ReniƩ2013-11-08 11:58:14 +0100
committerBruno ReniƩ2013-11-08 11:58:14 +0100
commit1296753b5c55de19e057eb6fde73da2b41f7032b (patch)
tree34668d1eb15d254d113197c51b2f90675e4c0cdb /.travis.yml
parent97430c0d9c608728eb7dc135b9aac4d5327b9247 (diff)
downloaddjango-rest-framework-1296753b5c55de19e057eb6fde73da2b41f7032b.tar.bz2
Updated versions in tox and travis config
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/.travis.yml b/.travis.yml
index d12479e9..386c1d64 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,20 +7,20 @@ 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.3.7 --use-mirrors"
+ - DJANGO="django==1.6"
+ - DJANGO="django==1.5.5"
+ - DJANGO="django==1.4.10"
+ - DJANGO="django==1.3.7"
install:
- pip install $DJANGO
- pip install defusedxml==0.3
- - "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"
- - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-guardian==1.1.1 --use-mirrors; fi"
- - "if [[ ${DJANGO::11} == 'django==1.3' ]]; then pip install django-filter==0.5.4 --use-mirrors; fi"
- - "if [[ ${DJANGO::11} != 'django==1.3' ]]; then pip install django-filter==0.6 --use-mirrors; fi"
+ - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install oauth2==1.5.211; fi"
+ - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth-plus==2.0; fi"
+ - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-oauth2-provider==0.2.4; fi"
+ - "if [[ ${TRAVIS_PYTHON_VERSION::1} != '3' ]]; then pip install django-guardian==1.1.1; fi"
+ - "if [[ ${DJANGO::11} == 'django==1.3' ]]; then pip install django-filter==0.5.4; fi"
+ - "if [[ ${DJANGO::11} != 'django==1.3' ]]; then pip install django-filter==0.6; fi"
- export PYTHONPATH=.
script:
@@ -29,11 +29,11 @@ script:
matrix:
exclude:
- python: "3.2"
- env: DJANGO="django==1.4.5 --use-mirrors"
+ env: DJANGO="django==1.4.5"
- python: "3.2"
- env: DJANGO="django==1.3.7 --use-mirrors"
+ env: DJANGO="django==1.3.7"
- python: "3.3"
- env: DJANGO="django==1.4.5 --use-mirrors"
+ env: DJANGO="django==1.4.5"
- python: "3.3"
- env: DJANGO="django==1.3.7 --use-mirrors"
+ env: DJANGO="django==1.3.7"