##// END OF EJS Templates
Adopt NEP 29, Drop Python 3.5 and Numpy <1.14...
Adopt NEP 29, Drop Python 3.5 and Numpy <1.14 This lays out the foundation of adopting NEP29 in IPython, And drop support for older versions of Python in the metadata, setup.py and __init__. This does not yet remove any codepath from within IPython.

File last commit:

r13387:3b4dba0a
r25225:0f6d2f42
Show More
setupegg.py
7 lines | 217 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
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))