Skip to content

Commit

Permalink
Enforce tornado 4.x until the Tornado 5.0 support is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
vdboor committed Apr 26, 2018
1 parent 50703bd commit dc71783
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: install clean test retest coverage docs

install:
pip install -e .[docs,test,async]
pip install -e .[docs,test,async,tornado]
pip install bumpversion twine wheel

lint:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
]

tornado_require = [
'tornado>=4.0.2'
'tornado>=4.0.2,<5'
]

async_require = [] # see below
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ envlist = py27,py33,py34,py35,py36,pypy

[testenv]
extras =
test
test
xmlsec
py{35,36}: async
py{35,36}: tornado
deps =
py{35,36}: aioresponses==0.1.3
py{35,36}: aioresponses==0.4.1
py{35,36}: pytest-asyncio==0.5.0
commands = coverage run --parallel -m pytest {posargs}

Expand Down

0 comments on commit dc71783

Please sign in to comment.