diff --git a/IPython/qt.py b/IPython/qt.py index 9f4a4b5..90f68b3 100644 --- a/IPython/qt.py +++ b/IPython/qt.py @@ -8,11 +8,11 @@ import sys from warnings import warn warn("The `IPython.qt` package has been deprecated. " - "You should import from jupyter_qtconsole instead.") + "You should import from qtconsole instead.") from IPython.utils.shimmodule import ShimModule # Unconditionally insert the shim into sys.modules so that further import calls # trigger the custom attribute access above -sys.modules['IPython.qt'] = ShimModule(src='IPython.qt', mirror='jupyter_qtconsole') +sys.modules['IPython.qt'] = ShimModule(src='IPython.qt', mirror='qtconsole') diff --git a/IPython/terminal/ipapp.py b/IPython/terminal/ipapp.py index 75ba104..786c08a 100755 --- a/IPython/terminal/ipapp.py +++ b/IPython/terminal/ipapp.py @@ -207,7 +207,7 @@ class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp): ] subcommands = dict( - qtconsole=('jupyter_qtconsole.console.qtconsoleapp.JupyterQtConsoleApp', + qtconsole=('qtconsole.console.qtconsoleapp.JupyterQtConsoleApp', """DEPRECATD: Launch the Jupyter Qt Console.""" ), notebook=('jupyter_notebook.notebookapp.NotebookApp', diff --git a/setup.py b/setup.py index f3211ef..182f8db 100755 --- a/setup.py +++ b/setup.py @@ -202,7 +202,7 @@ pyzmq = 'pyzmq>=13' extras_require = dict( parallel = ['ipyparallel'], - qtconsole = ['jupyter_qtconsole'], + qtconsole = ['qtconsole'], doc = ['Sphinx>=1.1', 'numpydoc'], test = ['nose>=0.10.1', 'requests'], terminal = [],