Skip to content

Commit

Permalink
travis: build on django 1.5 and 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Dec 13, 2013
1 parent e3104de commit cc4cd1c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@ python:
- "2.6"
- "2.7"
- "pypy"
env:
global:
- SECRET_KEY=justfortravis
matrix:
- DJANGO=1.5.5
- DJANGO=1.6.1
install:
- "pip install --upgrade --use-mirrors -e ."
- "pip install coveralls"
env: SECRET_KEY=justfortravis
- "pip install --use-mirrors Django==$DJANGO"
- "pip install --use-mirrors -e ."
- "pip install --use-mirrors coveralls"
script: "coverage run -m py.test --pep8"
after_success:
- coveralls
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
zip_safe=False,
platforms='any',
install_requires=[
'django >=1.5.3, <1.6', # 1.5.3 has the session serializer configurable
# 1.6 is not tested yet
'django >=1.5.3, <1.7', # 1.5.3 has the session serializer configurable
# 1.7 is not tested yet
'dnspython',
'south',
'django-bootstrap-form',
Expand Down

0 comments on commit cc4cd1c

Please sign in to comment.