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 dc59681 commit 7cac6a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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

0 comments on commit 7cac6a6

Please sign in to comment.