aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <daniel@totalueberwachung.de>2020-10-19 10:32:34 +0200
committerDaniel Willmann <daniel@totalueberwachung.de>2020-10-19 10:32:34 +0200
commitde07b95f84df184c4dc5fb9b4fb8c2d99f3673c3 (patch)
treeffc59e5ec9db8237e6c1a5f7eb4ad0c17b77bc58
parent4a3580b4c17e286f0613febf9d8d3594734ed6a0 (diff)
Fix invocation python2 -> python3
-rwxr-xr-xcontrib/jenkins.sh2
-rwxr-xr-xpySim-prog.py2
-rwxr-xr-xpySim-read.py2
-rw-r--r--pySim/card_handler.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index a70f139..5ba2c8d 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -9,7 +9,7 @@ if [ ! -d "./pysim-testdata/" ] ; then
exit 1
fi
-virtualenv -p python2 venv --system-site-packages
+virtualenv -p python3 venv --system-site-packages
. venv/bin/activate
pip install pytlv
pip install pyyaml
diff --git a/pySim-prog.py b/pySim-prog.py
index 8547573..0f752fb 100755
--- a/pySim-prog.py
+++ b/pySim-prog.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
#
# Utility to deal with sim cards and program the 'magic' ones easily
diff --git a/pySim-read.py b/pySim-read.py
index 3e19a02..6608556 100755
--- a/pySim-read.py
+++ b/pySim-read.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
#
# Utility to display some informations about a SIM card
diff --git a/pySim/card_handler.py b/pySim/card_handler.py
index bb33833..eaa838b 100644
--- a/pySim/card_handler.py
+++ b/pySim/card_handler.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" pySim: card handler utilities