added check_for_tornado, closes #3916

This way, those relying on the output of `python setup.py install` get
clued in about the fact that it is required for the notebook
This commit is contained in:
Paul Ivanov 2013-08-05 22:17:05 -07:00
parent db01a67d5f
commit b435738592

View File

@ -357,7 +357,7 @@ def check_for_dependencies():
check_for_sphinx, check_for_pygments,
check_for_nose, check_for_pexpect,
check_for_pyzmq, check_for_readline,
check_for_jinja2
check_for_jinja2, check_for_tornado
)
print_line()
print_raw("BUILDING IPYTHON")
@ -374,6 +374,7 @@ def check_for_dependencies():
check_for_nose()
check_for_pexpect()
check_for_pyzmq()
check_for_tornado()
check_for_readline()
check_for_jinja2()