Merge pull request #909 from minrk/nosqlite

Allow IPython to run without sqlite3.

History across sessions is not supported, but IPython will run and readline history within a session will work.
Fernando Perez 14 years ago
commit 0e147267ad

@ -128,6 +128,7 @@ have['pymongo'] = test_for('pymongo')
have['wx'] = test_for('wx')
have['wx.aui'] = test_for('wx.aui')
have['qt'] = test_for('IPython.external.qt')
have['sqlite3'] = test_for('sqlite3')
have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
@ -204,7 +205,9 @@ def make_exclude():
ipjoin('config', 'default'),
ipjoin('config', 'profile'),
]
if not have['sqlite3']:
exclusions.append(ipjoin('core', 'tests', 'test_history'))
exclusions.append(ipjoin('core', 'history'))
if not have['wx']:
exclusions.append(ipjoin('lib', 'inputhookwx'))

Loading…
Cancel
Save