From 18bcf6ec7faa1502311ae7e62154e928ef29e22b Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sun, 15 Nov 2020 00:42:36 +0200 Subject: [PATCH] Fix x86 wheels building (#5235) --- .github/workflows/ci.yml | 5 +++++ CHANGES/5230.bugfix | 1 + 2 files changed, 6 insertions(+) create mode 100644 CHANGES/5230.bugfix diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdc7867fc8c..2537929c09a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -223,6 +223,10 @@ jobs: matrix: pyver: [3.6, 3.7, 3.8, 3.9] os: [macos, windows] + arch: [x86, x64] + exclude: + - os: macos + arch: x86 fail-fast: false runs-on: ${{ matrix.os }}-latest needs: pre-deploy @@ -235,6 +239,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.pyver }} + architecture: ${{ matrix.arch }} - name: Cythonize if: ${{ matrix.no-extensions == '' }} run: | diff --git a/CHANGES/5230.bugfix b/CHANGES/5230.bugfix new file mode 100644 index 00000000000..832f15f75e5 --- /dev/null +++ b/CHANGES/5230.bugfix @@ -0,0 +1 @@ +Provide x86 Windows wheels.