##// END OF EJS Templates
jupyter_nbconvert is now nbconvert...
Min RK -
Show More
@@ -16,4 +16,4 b' from IPython.utils.shimmodule import ShimModule'
16 # trigger the custom attribute access above
16 # trigger the custom attribute access above
17
17
18 sys.modules['IPython.nbconvert'] = ShimModule(
18 sys.modules['IPython.nbconvert'] = ShimModule(
19 src='IPython.nbconvert', mirror='jupyter_nbconvert')
19 src='IPython.nbconvert', mirror='nbconvert')
@@ -228,7 +228,7 b' class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):'
228 history=('IPython.core.historyapp.HistoryApp',
228 history=('IPython.core.historyapp.HistoryApp',
229 "Manage the IPython history database."
229 "Manage the IPython history database."
230 ),
230 ),
231 nbconvert=('jupyter_nbconvert.nbconvertapp.NbConvertApp',
231 nbconvert=('nbconvert.nbconvertapp.NbConvertApp',
232 "DEPRECATED: Convert notebooks to/from other formats."
232 "DEPRECATED: Convert notebooks to/from other formats."
233 ),
233 ),
234 trust=('jupyter_nbformat.sign.TrustNotebookApp',
234 trust=('jupyter_nbformat.sign.TrustNotebookApp',
@@ -241,7 +241,7 b' rprinte = raw_print_err'
241
241
242
242
243 def unicode_std_stream(stream='stdout'):
243 def unicode_std_stream(stream='stdout'):
244 """DEPRECATED, moved to jupyter_nbconvert.utils.io"""
244 """DEPRECATED, moved to nbconvert.utils.io"""
245 warn("IPython.utils.io.unicode_std_stream has moved to jupyter_nbconvert.utils.io")
245 warn("IPython.utils.io.unicode_std_stream has moved to nbconvert.utils.io")
246 from jupyter_nbconvert.utils.io import unicode_std_stream
246 from nbconvert.utils.io import unicode_std_stream
247 return unicode_std_stream(stream)
247 return unicode_std_stream(stream)
@@ -209,7 +209,7 b' extras_require = dict('
209 kernel = ['ipython_kernel'],
209 kernel = ['ipython_kernel'],
210 nbformat = ['jupyter_nbformat'],
210 nbformat = ['jupyter_nbformat'],
211 notebook = ['jupyter_notebook'],
211 notebook = ['jupyter_notebook'],
212 nbconvert = ['jupyter_nbconvert']
212 nbconvert = ['nbconvert'],
213 )
213 )
214
214
215 if sys.version_info < (3, 3):
215 if sys.version_info < (3, 3):
General Comments 0
You need to be logged in to leave comments. Login now