From c6de836564ebc218d26e3e56eabec5eb597f3395 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Wed, 2 Apr 2014 10:42:43 -0700 Subject: [PATCH] Remove the octavemagic extension. It is part of oct2py, so we can stop testing and documenting it now. --- IPython/testing/iptest.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 45d2c78eb..957b8a395 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -143,7 +143,6 @@ have['qt'] = test_for('IPython.external.qt') have['rpy2'] = test_for('rpy2') have['sqlite3'] = test_for('sqlite3') have['cython'] = test_for('Cython') -have['oct2py'] = test_for('oct2py') have['tornado'] = test_for('tornado.version_info', (3,1,0), callback=None) have['jinja2'] = test_for('jinja2') have['requests'] = test_for('requests') @@ -250,9 +249,6 @@ sec = test_sections['extensions'] if not have['cython']: sec.exclude('cythonmagic') sec.exclude('tests.test_cythonmagic') -if not have['oct2py']: - sec.exclude('octavemagic') - sec.exclude('tests.test_octavemagic') if not have['rpy2'] or not have['numpy']: sec.exclude('rmagic') sec.exclude('tests.test_rmagic')