##// END OF EJS Templates
Fix setup.py script to be executable (other tools expect this)
Fernando Perez -
Show More
@@ -1,10 +1,11 b''
1 #!/usr/bin/env python
1 """This calls the setup routine for Python 2 or 3 as required."""
2 """This calls the setup routine for Python 2 or 3 as required."""
2
3
3 import sys
4 import sys
4
5
5 if sys.version_info[0] >= 3:
6 if sys.version_info[0] >= 3:
6 from setup3 import main
7 from setup3 import main
7 else:
8 else:
8 from setup2 import main
9 from setup2 import main
9
10
10 main()
11 main()
General Comments 0
You need to be logged in to leave comments. Login now