From 73241ca7c158acb44b6a973d5830c09ef0c87390 Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Thu, 15 Jun 2023 14:53:15 +0200 Subject: [PATCH] version switch to python 3.8 should be successful now --- Jenkinsfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5f504cc..f410ee4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -90,10 +90,9 @@ pipeline { sudo apt update sudo apt install python3.8 -y python3.8 --version - sudo update-alternatives --config python - sudo update-alternatives --set python /usr/bin/python3.8 - pip3.8 install -r requirements.txt - pip3.8 install git+https://${AUTH_USR}:${AUTH_PSW}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git + sudo update-alternatives --set python /usr/bin/python3.8 + pip3 install -r requirements.txt + pip3 install git+https://${AUTH_USR}:${AUTH_PSW}@atc.bmwgroup.net/bitbucket/scm/opapm/keyrequestparser.git """ } }