From 45bde06dd32ce5b90eacf0a4e96087edb7917b80 Mon Sep 17 00:00:00 2001 From: gryf Date: Sun, 15 Sep 2019 09:40:10 +0200 Subject: [PATCH] Changed shebang back to python. In modern linux distributions, executable "python" is a symlink to the selected Python interpreter. There could be multiple versions installed on the system, and appropriate tools on certain distributions exists for selecting default one. There is no need for changing it to explicitly "python3" executable. --- README.rst | 3 ++- uc1541 | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index b9a2c48..cd9010f 100644 --- a/README.rst +++ b/README.rst @@ -57,7 +57,7 @@ file. Rquirements =========== -* Python 2.7 +* Python 2.7 or Python 3.6 or higher * Vice installation (c1541 program in path) Installation @@ -87,6 +87,7 @@ script behaviour: Changelog ========= +* **3.2** Changed shebang to ``python`` executable instead of ``python3`` * **3.1** Argparse on Python3 have different behaviour, where if no subcommand is provided, it will pass anyway. Fixed. * **3.0** Added beta quality Python3 support diff --git a/uc1541 b/uc1541 index 792c5bc..a67a3c1 100755 --- a/uc1541 +++ b/uc1541 @@ -1,10 +1,10 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python """ UC1541 Virtual filesystem Author: Roman 'gryf' Dobosz -Date: 2019-07-20 -Version: 3.1 +Date: 2019-09-15 +Version: 3.2 Licence: BSD source: https://bitbucket.org/gryf/uc1541 mirror: https://github.com/gryf/uc1541