From a0f6d5b8b8446374b239ab2bc51a9f441df3976e Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sun, 20 Mar 2016 17:36:36 -0700 Subject: [PATCH] Only support Django 1.8 and above, as it's the LTS --- setup.py | 4 ++-- tox.ini | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index fc4666c..40bd955 100644 --- a/setup.py +++ b/setup.py @@ -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', ] diff --git a/tox.ini b/tox.ini index c21a839..75ae168 100644 --- a/tox.ini +++ b/tox.ini @@ -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 =