diff --git a/.travis.yml b/.travis.yml index 059980a..a8b6b9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py index c8edc01..4d01008 100644 --- a/setup.py +++ b/setup.py @@ -42,8 +42,8 @@ setup( 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',