From f2197d1e9031550bfa3f67f131cfc70c7fb62638 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 10 Dec 2024 17:47:12 +0000 Subject: [PATCH] Raspberry Pi build fixes --- auxiliary/cibuildwheel/make-raspberry-pi-aarch64.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auxiliary/cibuildwheel/make-raspberry-pi-aarch64.sh b/auxiliary/cibuildwheel/make-raspberry-pi-aarch64.sh index 290d7efd..10e22231 100755 --- a/auxiliary/cibuildwheel/make-raspberry-pi-aarch64.sh +++ b/auxiliary/cibuildwheel/make-raspberry-pi-aarch64.sh @@ -17,7 +17,7 @@ curl https://raw.githubusercontent.com/mackron/miniaudio/master/miniaudio.h -o s sudo apt-get install build-essential libffi-dev libreadline-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev # Install dependencies to build a manylinux wheel -sudo apt-get patchelf +sudo apt-get install patchelf VERSIONS="3.8.20 3.9.20 3.10.15 3.11.10 3.12.7 3.13.0" @@ -28,6 +28,7 @@ do echo "Building version: $VERSION" pyenv local $VERSION python3 --version + python3 -m pip install build python3 -m build --wheel done