File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5454try :
5555 import tornado
5656except ImportError :
57- raise ImportError (_ ("The Jupyter Notebook requires tornado >= 4 .0" ))
57+ raise ImportError (_ ("The Jupyter Notebook requires tornado >= 5 .0" ))
5858try :
5959 version_info = tornado .version_info
6060except AttributeError :
61- raise ImportError (_ ("The Jupyter Notebook requires tornado >= 4 .0, but you have < 1.1.0" ))
62- if version_info < (4 ,0 ):
63- raise ImportError (_ ("The Jupyter Notebook requires tornado >= 4 .0, but you have %s" ) % tornado .version )
61+ raise ImportError (_ ("The Jupyter Notebook requires tornado >= 5 .0, but you have < 1.1.0" ))
62+ if version_info < (5 ,0 ):
63+ raise ImportError (_ ("The Jupyter Notebook requires tornado >= 5 .0, but you have %s" ) % tornado .version )
6464
6565from tornado import httpserver
6666from tornado import web
You can’t perform that action at this time.
0 commit comments