Skip to content

Commit 7cac6a6

Browse files
committed
Enforce tornado 4.x until the Tornado 5.0 support is fixed
Tornado 5.x starts it's own event loop, breaking other packages: jupyter/notebook#3397 http://www.tornadoweb.org/en/stable/releases/v5.0.0.html#backwards-compatibility-notes
1 parent dc59681 commit 7cac6a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: install clean test retest coverage docs
22

33
install:
4-
pip install -e .[docs,test,async]
4+
pip install -e .[docs,test,async,tornado]
55
pip install bumpversion twine wheel
66

77
lint:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
]
2121

2222
tornado_require = [
23-
'tornado>=4.0.2'
23+
'tornado>=4.0.2,<5'
2424
]
2525

2626
async_require = [] # see below

0 commit comments

Comments
 (0)