Skip to content
This repository has been archived by the owner on Nov 3, 2022. It is now read-only.

Support Django 1.10 #34

Merged
merged 1 commit into from
Sep 24, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[tox]
envlist = {py27,py33,py34,pypy,pypy3}-django{17,18}, {py27,py34,py35,pypy}-django19, coverage, docs, flake8
envlist = {py27,py33,py34,pypy,pypy3}-django{17,18}, {py27,py34,py35,pypy}-django{19,110}, coverage, docs, flake8
; https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django

[testenv]
deps =
django17: Django>=1.7,<1.8
django18: Django>=1.8,<1.9
django19: Django>=1.9,<2.0
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
commands =
pip install -e .[test]
./runtests.py
Expand All @@ -16,7 +18,7 @@ basepython = python2.7
deps =
coveralls
coverage
Django>=1.7,<2.0
Django>=1.10,<1.11
commands =
pip install -e .[test]
coverage run --source channels/ ./runtests.py
Expand Down