Added Django 1.10 to local dev and tests.

This commit is contained in:
Martin Mahner 2016-09-04 20:05:44 +02:00
parent 9a64fdca29
commit a39697bdeb
3 changed files with 4 additions and 2 deletions

View file

@ -7,6 +7,7 @@ python:
env:
- DJANGO=1.8.*
- DJANGO=1.9.*
- DJANGO=1.10.*
before_install:
- pip install codecov

View file

@ -5,7 +5,7 @@
# -----------------------------------------------------------------------------
# Project dependencies
django==1.9.*
django==1.10.*
django-mptt
pygments
requests

View file

@ -1,7 +1,7 @@
[tox]
toxworkdir=/tmp/tox/dpaste
envlist=
py{27,35}-django-{18,19}
py{27,35}-django-{18,19,110}
[testenv]
install_command =
@ -14,3 +14,4 @@ deps=
# Django versions
django-18: django==1.8.*
django-19: django==1.9.*
django-110: django==1.10.*