Skip to content

Commit 7fecde3

Browse files
committed
Limit tornado version to avoid build issues
Tornado version 5.0 was recently released and introduces significant changes. One change that breaks Travis builds is the removal of the tornado.testing.LogTrapTestCase. Attempts to remove that reference still lead to failures. This change mostly limit the tornado version to temporarily avoid build issues.
1 parent ccbdcb0 commit 7fecde3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ jupyter_core>=4.0
22
jupyter_client>=4.2.0
33
notebook>=5.0.0
44
traitlets>=4.2.0
5-
tornado>=4.2.0
5+
tornado>=4.2.0,<5.0
66
requests>=2.7,<3.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
'jupyter_client>=4.2.0',
5858
'notebook>=5.0.0,<6.0',
5959
'traitlets>=4.2.0',
60-
'tornado>=4.2.0',
60+
'tornado>=4.2.0,<5.0',
6161
'requests>=2.7,<3.0'
6262
],
6363
classifiers=[

0 commit comments

Comments
 (0)