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: env:
- DJANGO=1.8.* - DJANGO=1.8.*
- DJANGO=1.9.* - DJANGO=1.9.*
- DJANGO=1.10.*
before_install: before_install:
- pip install codecov - pip install codecov

View file

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

View file

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