Merge pull request #8301 from minrk/rm-qtconsole

remove qtconsole
Min RK 11 years ago
commit 14a0b1614d

@ -124,7 +124,6 @@ have['numpy'] = test_for('numpy')
have['pexpect'] = test_for('pexpect')
have['pymongo'] = test_for('pymongo')
have['pygments'] = test_for('pygments')
have['qt'] = test_for('IPython.external.qt')
have['sqlite3'] = test_for('sqlite3')
have['tornado'] = test_for('tornado.version_info', (4,0), callback=None)
have['jinja2'] = test_for('jinja2')
@ -147,7 +146,7 @@ have['zmq'] = test_for('zmq.pyzmq_version_info', min_zmq, callback=lambda x: x()
test_group_names = ['core',
'extensions', 'lib', 'terminal', 'testing', 'utils',
'qt', 'html', 'nbconvert'
'html', 'nbconvert'
]
class TestSection(object):
@ -227,9 +226,6 @@ test_sections['autoreload'] = TestSection('autoreload',
['IPython.extensions.autoreload', 'IPython.extensions.tests.test_autoreload'])
test_group_names.append('autoreload')
# qt:
test_sections['qt'].requires('zmq', 'qt', 'pygments')
# html:
sec = test_sections['html']
sec.requires('zmq', 'tornado', 'requests', 'sqlite3', 'jsonschema')

@ -248,10 +248,11 @@ pyzmq = 'pyzmq>=13'
extras_require = dict(
parallel = ['ipython_parallel'],
qtconsole = [pyzmq, 'pygments'],
qtconsole = ['jupyter_qtconsole'],
doc = ['Sphinx>=1.1', 'numpydoc'],
test = ['nose>=0.10.1', 'requests'],
terminal = [],
kernel = ['ipython_kernel'],
nbformat = ['jupyter_nbformat'],
notebook = ['tornado>=4.0', pyzmq, 'jinja2', 'pygments', 'mistune>=0.5'],
nbconvert = ['pygments', 'jinja2', 'mistune>=0.3.1']
@ -263,8 +264,9 @@ if not sys.platform.startswith('win'):
if sys.version_info < (3, 3):
extras_require['test'].append('mock')
extras_require['notebook'].extend(extras_require['nbformat'])
extras_require['nbconvert'].extend(extras_require['nbformat'])
extras_require['notebook'].extend(extras_require['kernel'])
extras_require['notebook'].extend(extras_require['nbconvert'])
install_requires = [
'decorator',

Loading…
Cancel
Save