From d2abd1eed9571539eb803bf26c67d0abde29939b Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Thu, 30 Jun 2022 08:54:48 +0200 Subject: [PATCH] Tools: fix configparser version for python2 --- Tools/environment_install/install-prereqs-ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/environment_install/install-prereqs-ubuntu.sh b/Tools/environment_install/install-prereqs-ubuntu.sh index 83dcee5287..e50129482d 100755 --- a/Tools/environment_install/install-prereqs-ubuntu.sh +++ b/Tools/environment_install/install-prereqs-ubuntu.sh @@ -139,7 +139,7 @@ fi BASE_PKGS="build-essential ccache g++ gawk git make wget" if [ ${RELEASE_CODENAME} == 'xenial' ] || [ ${RELEASE_CODENAME} == 'bionic' ]; then # use fixed version for package that drop python2 support - PYTHON_PKGS="future lxml pymavlink MAVProxy pexpect flake8==3.7.9 geocoder empy configparser==5.0.0 click==7.1.2 decorator==4.4.2" + PYTHON_PKGS="future lxml pymavlink MAVProxy pexpect flake8==3.7.9 geocoder empy configparser==4.0.2 click==7.1.2 decorator==4.4.2" else PYTHON_PKGS="future lxml pymavlink MAVProxy pexpect flake8 geocoder empy" fi