Commit 9826640a authored by Licaon_Kter's avatar Licaon_Kter Committed by John Wu

f-strings need Python 3.6

...this is a blocker for F-Droid since Debian Strech has only Python 3.5.x
parent 1f526720
...@@ -19,8 +19,8 @@ def vprint(str): ...@@ -19,8 +19,8 @@ def vprint(str):
print(str) print(str)
# Environment checks # Environment checks
if not sys.version_info >= (3, 5): if not sys.version_info >= (3, 6):
error('Requires Python 3.5+') error('Requires Python 3.6+')
if 'ANDROID_HOME' not in os.environ: if 'ANDROID_HOME' not in os.environ:
error('Please add Android SDK path to ANDROID_HOME environment variable!') error('Please add Android SDK path to ANDROID_HOME environment variable!')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment