From 9826640ae688194f1431a4dfd1761ab967e17002 Mon Sep 17 00:00:00 2001 From: Licaon_Kter Date: Thu, 7 Feb 2019 17:40:30 +0200 Subject: [PATCH] f-strings need Python 3.6 ...this is a blocker for F-Droid since Debian Strech has only Python 3.5.x --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 98dd54515..d6ee9f11f 100755 --- a/build.py +++ b/build.py @@ -19,8 +19,8 @@ def vprint(str): print(str) # Environment checks -if not sys.version_info >= (3, 5): - error('Requires Python 3.5+') +if not sys.version_info >= (3, 6): + error('Requires Python 3.6+') if 'ANDROID_HOME' not in os.environ: error('Please add Android SDK path to ANDROID_HOME environment variable!')