fix for using the shell with IPython >= 1.0

This commit is contained in:
Rick Ree
2013-10-06 17:18:04 -05:00
parent add6fa526e
commit 46e2a663e9
+4 -1
View File
@@ -288,7 +288,10 @@ def run(
else:
try:
import IPython
if IPython.__version__ >= '0.11':
if IPython.__version__ >= '1.0':
IPython.start_ipython(user_ns=_env)
return
elif IPython.__version__ >= '0.11':
from IPython.frontend.terminal.embed import InteractiveShellEmbed
shell = InteractiveShellEmbed(user_ns=_env)
shell()