mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-12 14:00:27 +08:00
More code review changes:
* Added extension to the Sphinx docs. * Fixed unicode issues.
This commit is contained in:
parent
13cc762f4c
commit
26e8363d46
@ -148,6 +148,7 @@ have['wx'] = test_for('wx')
|
||||
have['wx.aui'] = test_for('wx.aui')
|
||||
have['qt'] = test_for('IPython.external.qt')
|
||||
have['sqlite3'] = test_for('sqlite3')
|
||||
have['cython'] = test_for('Cython')
|
||||
|
||||
have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
|
||||
|
||||
@ -268,6 +269,9 @@ def make_exclude():
|
||||
ipjoin('zmq', 'pylab'),
|
||||
])
|
||||
|
||||
if not have['cython']:
|
||||
exclusions.extend([ipjoin('extensions', 'cythonmagic')])
|
||||
|
||||
if not have['tornado']:
|
||||
exclusions.append(ipjoin('frontend', 'html'))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user