@@ -208,26 +208,6 @@ def _classes_default(self):
208208 StoreMagics ,
209209 ]
210210
211- deprecated_subcommands = dict (
212- qtconsole = ('qtconsole.qtconsoleapp.JupyterQtConsoleApp' ,
213- """DEPRECATED, Will be removed in IPython 6.0 : Launch the Jupyter Qt Console."""
214- ),
215- notebook = ('notebook.notebookapp.NotebookApp' ,
216- """DEPRECATED, Will be removed in IPython 6.0 : Launch the Jupyter HTML Notebook Server."""
217- ),
218- console = ('jupyter_console.app.ZMQTerminalIPythonApp' ,
219- """DEPRECATED, Will be removed in IPython 6.0 : Launch the Jupyter terminal-based Console."""
220- ),
221- nbconvert = ('nbconvert.nbconvertapp.NbConvertApp' ,
222- "DEPRECATED, Will be removed in IPython 6.0 : Convert notebooks to/from other formats."
223- ),
224- trust = ('nbformat.sign.TrustNotebookApp' ,
225- "DEPRECATED, Will be removed in IPython 6.0 : Sign notebooks to trust their potentially unsafe contents at load."
226- ),
227- kernelspec = ('jupyter_client.kernelspecapp.KernelSpecApp' ,
228- "DEPRECATED, Will be removed in IPython 6.0 : Manage Jupyter kernel specifications."
229- ),
230- )
231211 subcommands = dict (
232212 profile = ("IPython.core.profileapp.ProfileApp" ,
233213 "Create and manage IPython profiles."
@@ -242,11 +222,7 @@ def _classes_default(self):
242222 "Manage the IPython history database."
243223 ),
244224 )
245- deprecated_subcommands ['install-nbextension' ] = (
246- "notebook.nbextensions.InstallNBExtensionApp" ,
247- "DEPRECATED, Will be removed in IPython 6.0 : Install Jupyter notebook extension files"
248- )
249- subcommands .update (deprecated_subcommands )
225+
250226
251227 # *do* autocreate requested profile, but don't create the config file.
252228 auto_create = Bool (True )
0 commit comments