From 7b9ff421e731251276636de78c913d8eddc33281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Fri, 8 Nov 2024 16:39:04 +0100 Subject: [PATCH] Fix the rebuild --- .github/workflows/rebuild.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rebuild.yaml b/.github/workflows/rebuild.yaml index adea33fa4..5d1b1a9b7 100644 --- a/.github/workflows/rebuild.yaml +++ b/.github/workflows/rebuild.yaml @@ -13,10 +13,14 @@ jobs: strategy: fail-fast: false matrix: - branch: - - '3.28' - - '3.29' - - '3.30' + include: + - branch: '3.28' + python-version: '3.11' + - branch: '3.29' + python-version: '3.11' + - branch: '3.30' + python-version: '3.11' + steps: - run: docker system prune --all --force - uses: actions/checkout@v4 @@ -57,7 +61,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: '3.13' + python-version: ${{ matrix.python-version }} - run: python3 -m pip install --requirement=ci/requirements.txt - run: make build