From 68257bb63488bd1309acad57e34ac7f3f7682bd2 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sat, 14 Nov 2020 21:48:24 +0200 Subject: [PATCH] Fix x86 wheels building (#546) --- .github/workflows/ci.yml | 5 +++++ CHANGES/535.bugfix | 1 + 2 files changed, 6 insertions(+) create mode 100644 CHANGES/535.bugfix diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7aeb8a7f..45eefeb81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -226,6 +226,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 @@ -236,6 +240,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.pyver }} + architecture: ${{ matrix.arch }} - name: Install cython if: ${{ matrix.no-extensions == '' }} uses: py-actions/py-dependency-install@v2 diff --git a/CHANGES/535.bugfix b/CHANGES/535.bugfix new file mode 100644 index 000000000..832f15f75 --- /dev/null +++ b/CHANGES/535.bugfix @@ -0,0 +1 @@ +Provide x86 Windows wheels.