mirror of
https://github.com/django/daphne.git
synced 2025-04-21 01:02:06 +03:00
Only support Django 1.8 and above, as it's the LTS
This commit is contained in:
parent
caa589ae70
commit
a0f6d5b8b8
4
setup.py
4
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',
|
||||
]
|
||||
|
|
4
tox.ini
4
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 =
|
||||
|
|
Loading…
Reference in New Issue
Block a user