From: Mattijs Korpershoek Date: Wed, 16 Apr 2025 12:36:28 +0000 (+0200) Subject: tools/make_pip: Use venv when invoking pip X-Git-Tag: v2025.07-rc1~15 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d3f1ebaf8751f0287b5d02158cc706435f8fb19;p=pandora-u-boot.git tools/make_pip: Use venv when invoking pip Recent Ubuntu versions (24.04+) disallow pip by default when installing packages. The recommended approach is to use a virtual environment (venv) instead. Because of this, "make pip" is failing on such versions. To prepare CI container migration to Ubuntu 24.04, use a venv in the make_pip script. Note: This has been reported on [1] [1] https://source.denx.de/u-boot/custodians/u-boot-dm/-/issues/37 Signed-off-by: Mattijs Korpershoek Reviewed-by: Quentin Schulz --- diff --git a/scripts/make_pip.sh b/scripts/make_pip.sh index d2639ffd6e4..33ad51ada70 100755 --- a/scripts/make_pip.sh +++ b/scripts/make_pip.sh @@ -106,6 +106,10 @@ fi mkdir ${dir}/tests cd ${dir} +# Use virtual environment +python3 -m venv .venv +source .venv/bin/activate + # Make sure the tools are up to date python3 -m pip install --upgrade build python3 -m pip install --upgrade twine @@ -122,6 +126,8 @@ if [ -n "${upload}" ]; then echo "Completed upload of ${tool}" fi +# Finish using virtual environment +deactivate rm -rf "${dir}" echo -e "done\n\n"