From 4ce03a2d68bdcb89e24614d5be2939236c61e937 Mon Sep 17 00:00:00 2001 From: Ruben Di Battista Date: Sat, 4 May 2024 16:13:00 +0200 Subject: [PATCH] MNT: Explicitly require x64 arch --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 425433b48..7f088909e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ jobs: strategy: matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + architecture: ["x86", "x64"] os: [ ubuntu-latest, @@ -24,6 +25,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + architecture: ${{ matrix.architecture }} - name: Install run: | @@ -83,7 +85,7 @@ jobs: release: needs: [build_wheels, build_sdist] # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') - if: github.event_name == 'push' + if: github.event_name == 'push' runs-on: ubuntu-latest steps: - uses: actions/download-artifact@v4