aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/base-images
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2022-05-09 21:06:20 +0100
committerGravatar GitHub <noreply@github.com>2022-05-09 16:06:20 -0400
commitc041353712d74fec4c6124624b230eccb1223a69 (patch)
tree0eb5f52032376093fb6f71b572182c00411f498d /infra/base-images
parent688737e846d4b0fea6d815d9a5391c1de3268653 (diff)
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>
Diffstat (limited to 'infra/base-images')
-rwxr-xr-xinfra/base-images/base-builder/install_python.sh4
1 files changed, 3 insertions, 1 deletions
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/*