summaryrefslogtreecommitdiffstats
path: root/run
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2020-05-21 07:18:40 +1000
committerBrian May <brian@linuxpenguins.xyz>2020-05-29 07:44:51 +1000
commit9f27c1943b83891891973e655a700886e357a1ca (patch)
tree7878bb8fa17417a2690cc15906a28e24fe509d33 /run
parent6c21addde97c4582b3dccb22bca64c33af3e5eff (diff)
Updated supported Python versions
* Drop 2.7 * Add 3.7 and 3.8
Diffstat (limited to 'run')
-rwxr-xr-xrun2
1 files changed, 0 insertions, 2 deletions
diff --git a/run b/run
index c2c1a33..52f28c2 100755
--- a/run
+++ b/run
@@ -7,8 +7,6 @@ python_best_version() {
if [ -x "$(command -v python3)" ] &&
python3 -c "import sys; sys.exit(not sys.version_info > (3, 5))"; then
exec python3 "$@"
- elif [ -x "$(command -v python2.7)" ]; then
- exec python2.7 "$@"
else
exec python "$@"
fi