Use python3 in shebangs.

Should fix #1789.
This commit is contained in:
Jamie Bliss 2016-10-02 12:59:27 -04:00
parent 78af6446fa
commit 06c5d7b1b6
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
"""A package-based, source code amalgamater.""" """A package-based, source code amalgamater."""
import os import os
import sys import sys

View file

@ -1,3 +1,3 @@
#!/usr/bin/env python -u #!/usr/bin/env python3 -u
from xonsh.main import main from xonsh.main import main
main() main()

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# -*- coding: ascii -*- # -*- coding: ascii -*-
"""The xonsh installer.""" """The xonsh installer."""
# Note: Do not embed any non-ASCII characters in this file until pip has been # Note: Do not embed any non-ASCII characters in this file until pip has been

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import subprocess import subprocess
import os import os
import argparse import argparse