Only support Django 1.8 and above, as it's the LTS

This commit is contained in:
Andrew Godwin 2016-03-20 17:36:36 -07:00
parent caa589ae70
commit a0f6d5b8b8
2 changed files with 3 additions and 5 deletions

View File

@ -7,12 +7,12 @@ setup(
url='http://github.com/andrewgodwin/django-channels',
author='Andrew Godwin',
author_email='andrew@aeracode.org',
description="Brings event-driven capabilities to Django with a channel system. Django 1.7 and up only.",
description="Brings event-driven capabilities to Django with a channel system. Django 1.8 and up only.",
license='BSD',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django>=1.7',
'Django>=1.8',
'asgiref>=0.9',
'daphne>=0.9.2',
]

View File

@ -1,7 +1,7 @@
[tox]
skipsdist = True
envlist =
{py27}-django-{17,18,19}
{py27}-django-{18,19}
{py34}-django-{18,19}
{py35}-django-{18,19}
{py27,py35}-flake8
@ -18,8 +18,6 @@ deps =
py27: mock
flake8: flake8
isort: isort
django-16: Django>=1.6,<1.7
django-17: Django>=1.7,<1.8
django-18: Django>=1.8,<1.9
django-19: Django>=1.9,<1.10
commands =