Skip to content

Commit bb4c2ad

Browse files
authored
Merge pull request #388 from fabinsch/topic/fix-win-wheels
Fix pip wheels for windows
2 parents e701292 + f026d7e commit bb4c2ad

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release-osx-win.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
24-
os: [macos-13, macos-14, windows-2019, windows-latest]
24+
os: [macos-13, macos-14, windows-latest]
2525
include:
2626
- os: windows-2019
2727
toolset: ClangCl
@@ -107,6 +107,12 @@ jobs:
107107
merge-multiple: true
108108
path: dist
109109

110+
- name: Check package with twine
111+
run: |
112+
pip install twine
113+
# checks if files can be unzipped and if metadata is correct
114+
twine check --strict dist/*
115+
110116
- name: Publish package to PyPI
111117
uses: pypa/gh-action-pypi-publish@release/v1
112118
if: |

0 commit comments

Comments
 (0)