From 8153a9427758a25d10f0011244483e6e802bb500 Mon Sep 17 00:00:00 2001 From: Armin Sabouri Date: Wed, 27 Aug 2025 14:35:07 -0400 Subject: [PATCH] Remove apt commands from bindings generate script We don't actually use apt in this script. And its possible apt is not the prefered package manager of the distro. --- payjoin-ffi/python/scripts/generate_bindings.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/payjoin-ffi/python/scripts/generate_bindings.sh b/payjoin-ffi/python/scripts/generate_bindings.sh index 7d191d6ca..c49df9ca0 100644 --- a/payjoin-ffi/python/scripts/generate_bindings.sh +++ b/payjoin-ffi/python/scripts/generate_bindings.sh @@ -11,8 +11,6 @@ if [[ "$OS" == "Darwin" ]]; then python3 --version pip install -r requirements.txt -r requirements-dev.txt elif [[ "$OS" == "Linux" ]]; then - sudo apt update - sudo apt install -y build-essential python3-dev LIBNAME=libpayjoin_ffi.so PYBIN=$(dirname $(which python)) PYBIN="$PYBIN"