Skip to content

Commit

Permalink
BLD: Try to install Python 32bit with mingw
Browse files Browse the repository at this point in the history
  • Loading branch information
seiko2plus committed Jan 9, 2023
1 parent ae0476a commit 54c5fc0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.x"
if: ${{ matrix.buildplat[1] != 'win32' }}
- uses: actions/setup-python@v4
with:
python-version: "3.x"
architecture: "x86"
if: ${{ matrix.buildplat[1] == 'win32' }}

- name: setup rtools for 32-bit
run: |
Expand Down Expand Up @@ -172,6 +178,12 @@ jobs:
with:
# Build sdist on lowest supported Python
python-version: "3.9"
if: ${{ matrix.buildplat[1] != 'win32' }}
- uses: actions/setup-python@v4
with:
python-version: "3.9"
architecture: "x86"
if: ${{ matrix.buildplat[1] == 'win32' }}
- name: Build sdist
run: |
python setup.py sdist
Expand Down

0 comments on commit 54c5fc0

Please sign in to comment.