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