Skip to content

Commit

Permalink
Add python 3.2 and django 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Bastida committed Jan 24, 2013
1 parent 65fa3c8 commit c9fcdab
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .travis.yml
@@ -1,12 +1,13 @@
language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.2"

env:
- DJANGO_VERSION=1.3.3
- DJANGO_VERSION=1.4.1
- DJANGO=django==1.3
- DJANGO=django==1.4
- DJANGO=https://github.com/django/django/tarball/stable/1.5.x

install:
- pip install -q Django==$DJANGO_VERSION --use-mirrors
Expand All @@ -19,3 +20,14 @@ branches:
only:
- master
- develop

matrix:
exclude:
# Django < 1.5 not supported on python 3
- python: "3.2"
env: DJANGO=django==1.3
- python: "3.2"
env: DJANGO=django==1.4
# Django 1.5 strongly recommends python 2.7 or later (so skip 2.6)
- python: "2.6"
env: DJANGO=https://github.com/django/django/tarball/stable/1.5.x

0 comments on commit c9fcdab

Please sign in to comment.