Python 3.4 is the minimum requirement

And not 3.5
This commit is contained in:
Jellyfrog
2020-06-30 16:01:22 +02:00
parent b36ab394a8
commit 2fb1594348

View File

@@ -132,7 +132,7 @@ check_dependencies() {
local ver_56=$(php -r "echo (int)version_compare(PHP_VERSION, '5.6.4', '<');")
local ver_71=$(php -r "echo (int)version_compare(PHP_VERSION, '7.1.3', '<');")
local ver_72=$(php -r "echo (int)version_compare(PHP_VERSION, '7.2.5', '<');")
local python3=$(python3 -c "import sys;print(int(sys.version_info < (3, 5)))" 2> /dev/null)
local python3=$(python3 -c "import sys;print(int(sys.version_info < (3, 4)))" 2> /dev/null)
local python_deps=$(scripts/check_requirements.py > /dev/null 2>&1; echo $?)
local phpver="master"
local pythonver="master"