From 134e203b2187a4e2d94f1050d4ddb756a100ef37 Mon Sep 17 00:00:00 2001 From: Matthias Urlichs Date: Fri, 3 Jul 2020 08:21:22 +0200 Subject: [PATCH] Use Python3 --- scripts/py2dsc | 2 +- scripts/py2dsc-deb | 2 +- scripts/pypi-download | 2 +- scripts/pypi-install | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/py2dsc b/scripts/py2dsc index 6377030c..abe9b715 100755 --- a/scripts/py2dsc +++ b/scripts/py2dsc @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 USAGE = """\ usage: py2dsc [options] distfile or: py2dsc --help diff --git a/scripts/py2dsc-deb b/scripts/py2dsc-deb index 06dc2f71..bff29926 100755 --- a/scripts/py2dsc-deb +++ b/scripts/py2dsc-deb @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 USAGE = """\ usage: py2dsc-deb [options] distfile or: py2dsc-deb --help diff --git a/scripts/pypi-download b/scripts/pypi-download index b3e64818..8f6f446b 100755 --- a/scripts/pypi-download +++ b/scripts/pypi-download @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys from optparse import OptionParser from stdeb.downloader import myprint, get_source_tarball diff --git a/scripts/pypi-install b/scripts/pypi-install index 1a16050c..5e2bdbdf 100755 --- a/scripts/pypi-install +++ b/scripts/pypi-install @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys, os, shutil import subprocess import argparse