From dc5af9827620a2189f65fa42d9965e7a3d7b4695 Mon Sep 17 00:00:00 2001 From: Vitor Bandeira Date: Fri, 20 Oct 2023 04:26:03 -0700 Subject: [PATCH] ci: fix issue with pip package (#2022) --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 380a01d6e..165f8bfe3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -76,6 +76,10 @@ pipeline { agent any; steps { script { + stage("${DESIGN} - Setup Python") { + sh 'make venv'; + sh "./venv/bin/python3 -m pip install --upgrade --no-cache-dir 'urllib3<2'"; + } stage("${DESIGN} - Install PDK") { sh 'python3 -m pip install --user --upgrade --no-cache-dir pip'; sh 'python3 -m pip install --user --upgrade --no-cache-dir volare';