From 250a6fbc3a32a982455289287569e477925c33a1 Mon Sep 17 00:00:00 2001 From: Axel Garcia Date: Tue, 9 Jun 2026 16:01:14 +0200 Subject: [PATCH] COMP: Fix the wrong python version when testing the wheel --- .github/workflows/build-test-package-python-cuda.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test-package-python-cuda.yml b/.github/workflows/build-test-package-python-cuda.yml index e77fad27b..3ef9af10d 100644 --- a/.github/workflows/build-test-package-python-cuda.yml +++ b/.github/workflows/build-test-package-python-cuda.yml @@ -280,9 +280,9 @@ jobs: # Find wheel for Python 3.11 dynamically if [[ "${{ matrix.runs-on }}" == "self-hosted-linux" ]]; then - wheel=$(find wheels -name "*cuda${{ matrix.cuda-version }}**manylinux_2_28_x86_64.whl" -type f | head -1) + wheel=$(find wheels -name "itk_rtk_cuda${{ matrix.cuda-version }}*cp311-abi3-manylinux_2_28_x86_64.whl" -type f | head -1) else - wheel=$(find wheels -name "*cuda${{ matrix.cuda-version }}*cp311*win*.whl" -type f | head -1) + wheel=$(find wheels -name "itk_rtk_cuda${{ matrix.cuda-version }}*cp311-abi3-win_amd64.whl" -type f | head -1) fi echo "Installing wheel: $wheel"