Skip to content

Commit f77bce1

Browse files
committed
Fixing Win32 wheel
1 parent 21f890f commit f77bce1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/deploy-wheels.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ jobs:
3030
- name: Set up Python ${{ matrix.python }}
3131
uses: actions/setup-python@v2
3232
with:
33-
python-version: ${{ matrix.python }}
34-
33+
python-version: ${{ matrix.python }}
34+
architecture: "x86"
35+
3536
- name: Build bdist
3637
run: |
3738
python -m pip install setuptools --upgrade
@@ -60,7 +61,8 @@ jobs:
6061
- name: Set up Python ${{ matrix.python }}
6162
uses: actions/setup-python@v2
6263
with:
63-
python-version: ${{ matrix.python }}
64+
python-version: ${{ matrix.python }}
65+
architecture: "x64"
6466

6567
- name: Build bdist wheel
6668
run: |

delphivcl/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.29"
1+
__version__ = "0.1.30"

0 commit comments

Comments
 (0)