##// END OF EJS Templates
fix failing tests without X in IPython.lib...
fix failing tests without X in IPython.lib note that pylab_not_importable appears to not be enough to catch if we're running X. I'm able to import pylab, and it's only %%matplotlib magic that causes these tests to die

File last commit:

r2460:e8303d57
r11971:3ebde4bd
Show More
setupegg.py
6 lines | 156 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
execfile('setup.py')