Skip to content

Commit 03676bb

Browse files
committed
Build 32-bit wheels on Windows.
1 parent 3e34000 commit 03676bb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,15 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: ["ubuntu-20.04", "windows-2019"]
22-
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy-3.6", "pypy-3.7"]
22+
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy-3.7"]
23+
architecture: ["x64"]
24+
include:
25+
- os: "windows-2019"
26+
python-version: "3.6"
27+
architecture: "x86"
28+
- os: "windows-2019"
29+
python-version: "pypy-3.6"
30+
architecture: "x86"
2331
fail-fast: false
2432

2533
steps:
@@ -33,6 +41,7 @@ jobs:
3341
uses: actions/setup-python@v2
3442
with:
3543
python-version: ${{ matrix.python-version }}
44+
architecture: ${{ matrix.architecture }}
3645
- name: Install APT dependencies
3746
if: runner.os == 'Linux'
3847
run: |

0 commit comments

Comments
 (0)