From 157826bf823a8606994eb1d40afa7eb397ccdc26 Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Tue, 21 Jan 2025 14:34:20 -0500 Subject: [PATCH] Support `fetch-test-deps.sh --get-deps debian` Also use `apt-get` instead of `pip` to install Pillow for libbet --- test/fetch-test-deps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/fetch-test-deps.sh b/test/fetch-test-deps.sh index a3b8d14b..2e8d127f 100755 --- a/test/fetch-test-deps.sh +++ b/test/fetch-test-deps.sh @@ -57,12 +57,12 @@ case "$actionname" in # libbet depends on PIL to build if [ "$2" = "libbet" ]; then case "${osname%-*}" in + ubuntu | debian) + sudo apt-get install python3-pil + ;; macos) python3 -m pip install --break-system-packages pillow ;; - ubuntu) - python3 -m pip install pillow - ;; windows) py -3 -m pip install pillow ;;