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
pull/37/head
Paul Ivanov 13 years ago
parent db01a67d5f
commit b435738592

@ -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()

Loading…
Cancel
Save