##// END OF EJS Templates
Fix in MPI psum example....
Fix in MPI psum example. Thanks to J. Thomas for updating the psum example to the mpi4py 1.1.0 API.

File last commit:

r2119:2c8c96be
r2284:7fdfbca0
Show More
setupegg.py
12 lines | 297 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
import sys
# now, import setuptools and call the actual setup
import setuptools
execfile('setup.py')
# clean up the junk left around by setuptools
if "develop" not in sys.argv:
os.system('rm -rf ipython.egg-info build')