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!')