From 60b6f98c21893375a54911d512fd0f88ef375ff7 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Wed, 31 Jul 2019 11:12:38 -0600 Subject: [PATCH] Fix Travis CI build error on Linux - pyenv: version `3.6.3' not installed The Travis CI builds are failing with the following messages: pyenv local 3.6.3 pyenv: version `3.6.3' not installed Fix by increasing python version to 3.6.7. --- package/prepare_linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/prepare_linux.sh b/package/prepare_linux.sh index a1ce26f..458d926 100755 --- a/package/prepare_linux.sh +++ b/package/prepare_linux.sh @@ -5,7 +5,7 @@ sudo apt-get -qq install python3-pip python3-dev \ build-essential qt5-default libxml2-dev libxslt1-dev \ mesa-utils libgl1-mesa-glx libgl1-mesa-dev -pyenv local 3.6.3 +pyenv local 3.6.7 python --version easy_install pip pip install pyqt5==5.9 lxml pytest pytest-faulthandler