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.