Use python3 everywhere
This commit is contained in:
parent
d91c333d63
commit
64454e42f1
2 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
#encoding: utf-8
|
||||
|
||||
# Color Up Arbitrary Command Ouput
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -1,4 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
|
@ -11,7 +11,7 @@ except ImportError:
|
|||
from distutils.core import setup
|
||||
|
||||
if sys.argv[-1] == 'publish':
|
||||
os.system('python setup.py sdist upload')
|
||||
os.system('python3 setup.py sdist upload')
|
||||
sys.exit()
|
||||
|
||||
packages = ['colout']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue