##// END OF EJS Templates
jupyter_qtconsole is now qtconsole
Min RK -
Show More
@@ -8,11 +8,11 b' import sys'
8 8 from warnings import warn
9 9
10 10 warn("The `IPython.qt` package has been deprecated. "
11 "You should import from jupyter_qtconsole instead.")
11 "You should import from qtconsole instead.")
12 12
13 13 from IPython.utils.shimmodule import ShimModule
14 14
15 15 # Unconditionally insert the shim into sys.modules so that further import calls
16 16 # trigger the custom attribute access above
17 17
18 sys.modules['IPython.qt'] = ShimModule(src='IPython.qt', mirror='jupyter_qtconsole')
18 sys.modules['IPython.qt'] = ShimModule(src='IPython.qt', mirror='qtconsole')
@@ -207,7 +207,7 b' class TerminalIPythonApp(BaseIPythonApplication, InteractiveShellApp):'
207 207 ]
208 208
209 209 subcommands = dict(
210 qtconsole=('jupyter_qtconsole.console.qtconsoleapp.JupyterQtConsoleApp',
210 qtconsole=('qtconsole.console.qtconsoleapp.JupyterQtConsoleApp',
211 211 """DEPRECATD: Launch the Jupyter Qt Console."""
212 212 ),
213 213 notebook=('jupyter_notebook.notebookapp.NotebookApp',
@@ -202,7 +202,7 b" pyzmq = 'pyzmq>=13'"
202 202
203 203 extras_require = dict(
204 204 parallel = ['ipyparallel'],
205 qtconsole = ['jupyter_qtconsole'],
205 qtconsole = ['qtconsole'],
206 206 doc = ['Sphinx>=1.1', 'numpydoc'],
207 207 test = ['nose>=0.10.1', 'requests'],
208 208 terminal = [],
General Comments 0
You need to be logged in to leave comments. Login now