Skip to content

Commit 4532fe9

Browse files
authored
Merge pull request Embarcadero#6 from Embarcadero/win32fix
Win32 messed library fix
2 parents 21f890f + 071fbe4 commit 4532fe9

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/deploy-wheels.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,16 @@ jobs:
3030
- name: Set up Python ${{ matrix.python }}
3131
uses: actions/setup-python@v2
3232
with:
33-
python-version: ${{ matrix.python }}
34-
35-
- name: Build bdist
33+
python-version: ${{ matrix.python }}
34+
architecture: "x86"
35+
36+
- name: Build bdist wheel
3637
run: |
3738
python -m pip install setuptools --upgrade
3839
python -m pip install wheel --upgrade
3940
python setup.py bdist_wheel --plat-name=win32
4041
41-
- name: Save sdist
42+
- name: Save wheel
4243
uses: actions/upload-artifact@v2
4344
with:
4445
path: dist/*.whl
@@ -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.31"

0 commit comments

Comments
 (0)