mirror of
https://github.com/django/daphne.git
synced 2025-06-30 18:03:08 +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',
|
url='http://github.com/andrewgodwin/django-channels',
|
||||||
author='Andrew Godwin',
|
author='Andrew Godwin',
|
||||||
author_email='andrew@aeracode.org',
|
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',
|
license='BSD',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Django>=1.7',
|
'Django>=1.8',
|
||||||
'asgiref>=0.9',
|
'asgiref>=0.9',
|
||||||
'daphne>=0.9.2',
|
'daphne>=0.9.2',
|
||||||
]
|
]
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -1,7 +1,7 @@
|
||||||
[tox]
|
[tox]
|
||||||
skipsdist = True
|
skipsdist = True
|
||||||
envlist =
|
envlist =
|
||||||
{py27}-django-{17,18,19}
|
{py27}-django-{18,19}
|
||||||
{py34}-django-{18,19}
|
{py34}-django-{18,19}
|
||||||
{py35}-django-{18,19}
|
{py35}-django-{18,19}
|
||||||
{py27,py35}-flake8
|
{py27,py35}-flake8
|
||||||
|
@ -18,8 +18,6 @@ deps =
|
||||||
py27: mock
|
py27: mock
|
||||||
flake8: flake8
|
flake8: flake8
|
||||||
isort: isort
|
isort: isort
|
||||||
django-16: Django>=1.6,<1.7
|
|
||||||
django-17: Django>=1.7,<1.8
|
|
||||||
django-18: Django>=1.8,<1.9
|
django-18: Django>=1.8,<1.9
|
||||||
django-19: Django>=1.9,<1.10
|
django-19: Django>=1.9,<1.10
|
||||||
commands =
|
commands =
|
||||||
|
|
Loading…
Reference in New Issue
Block a user