From 15ce51e16e498d9c8afc81a4d146871b3f94b78d Mon Sep 17 00:00:00 2001 From: hgy59 Date: Tue, 26 Nov 2024 23:49:58 +0100 Subject: [PATCH] real fix for #6284 - python dependent packages with name sorted after python31* where removed from packages to build (in this context: python-wheels and rdiff-backup) --- .github/actions/prepare.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/actions/prepare.sh b/.github/actions/prepare.sh index aaa5b0265ae..56a3020e154 100755 --- a/.github/actions/prepare.sh +++ b/.github/actions/prepare.sh @@ -94,7 +94,6 @@ for py in python310 python311 python313; do if [ "$(echo ${py} ${python_dependent_packages} | grep -ow ${package})" != "" ]; then packages_without_python=$(echo "${packages}" | tr ' ' '\n' | grep -v "${py}" | tr '\n' ' ') packages="${py} ${packages_without_python}" - break fi done done