From c041353712d74fec4c6124624b230eccb1223a69 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Mon, 9 May 2022 21:06:20 +0100 Subject: infra: upgrade pyinstaller from 4.1 to 5.0.1 (#7680) This is needed to pack projects e.g. numpy. Co-authored-by: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> --- infra/base-images/base-builder/install_python.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'infra/base-images') diff --git a/infra/base-images/base-builder/install_python.sh b/infra/base-images/base-builder/install_python.sh index adb53040..db1561da 100755 --- a/infra/base-images/base-builder/install_python.sh +++ b/infra/base-images/base-builder/install_python.sh @@ -17,5 +17,7 @@ echo "ATHERIS INSTALL" unset CFLAGS CXXFLAGS -pip3 install -v --no-cache-dir "atheris>=2.0.6" "pyinstaller==4.1" "coverage==6.3.2" +# PYI_STATIC_ZLIB=1 is needed for installing pyinstaller 5.0 +export PYI_STATIC_ZLIB=1 +pip3 install -v --no-cache-dir "atheris>=2.0.6" "pyinstaller==5.0.1" "coverage==6.3.2" rm -rf /tmp/* -- cgit v1.2.3