##// END OF EJS Templates
Cut more appveyor tests....
Cut more appveyor tests. The sequential nature of Appveyor still make it way slower than Travis. I'm thus proposing cutting 3.4 and 3.5 from the 64bit section. We thus still test on older and newer Pythons which have the most chance of catching bugs as 3.3 will fail if we use a non-existing yet feature and 3.6 fail on deprecated behaviors.

File last commit:

r13387:3b4dba0a
r23265:8eaae94d
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'))