From 7a7fa148372b0138f19098c5401b784079c68d5e Mon Sep 17 00:00:00 2001 From: Newbyte Date: Sat, 11 Jan 2025 15:39:36 +0100 Subject: [PATCH] CI: Install Ruff from PyPi instead of Alpine (MR 2525) The Alpine version is too outdated. --- .ci/ruff.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/ruff.sh b/.ci/ruff.sh index 0afdbacc..2482b6f8 100755 --- a/.ci/ruff.sh +++ b/.ci/ruff.sh @@ -4,7 +4,8 @@ if [ "$(id -u)" = 0 ]; then set -x - apk -q add ruff + apk -q add py3-pip + pip install --break-system-packages --no-warn-script-location ruff exec su "${TESTUSER:-build}" -c "sh -e $0" fi