From 2edfe5d7d5db911b4e2fd4c5830a58aeaeec8951 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sat, 18 Mar 2017 12:32:04 -0700 Subject: [PATCH] Ah yes, Twisted 17 releases start at 17.1 --- .travis.yml | 2 +- README.rst | 2 +- setup.py | 2 +- tox.ini | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a182737..d3b0e2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ python: env: - TWISTED_RELEASE="twisted" - - TWISTED_RELEASE="twisted==17.0.0" + - TWISTED_RELEASE="twisted==17.1.0" install: pip install $TWISTED_RELEASE -e .[tests] diff --git a/README.rst b/README.rst index 49a5dd7..f8c0f04 100644 --- a/README.rst +++ b/README.rst @@ -110,7 +110,7 @@ should start with a slash, but not end with one; for example:: Dependencies ------------ -All Channels projects currently support Python 2.7, 3.4 and 3.5. `daphne` requires Twisted 17.0 or +All Channels projects currently support Python 2.7, 3.4 and 3.5. `daphne` requires Twisted 17.1 or greater. diff --git a/setup.py b/setup.py index 2f96759..f2b4095 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( include_package_data=True, install_requires=[ 'asgiref>=1.0.0', - 'twisted>=17.0', + 'twisted>=17.1', 'autobahn>=0.12', ], extras_require={ diff --git a/tox.ini b/tox.ini index 2c19948..0447f1b 100644 --- a/tox.ini +++ b/tox.ini @@ -5,5 +5,5 @@ envlist = py{27,34,35}-twisted-{old,new} [testenv] extras = tests deps = - twisted-old: twisted==17.0.0 + twisted-old: twisted==17.1.0 commands = python -m unittest discover