mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Merge pull request #11880 from Jellyfrog/bug/python34
Python 3.4 is the minimum requirement
This commit is contained in:
2
daily.sh
2
daily.sh
@ -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"
|
||||
|
Reference in New Issue
Block a user