Skip to content

Commit

Permalink
Fix wheel definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
pllim committed Nov 28, 2023
1 parent 476e8d1 commit a8d4b56
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-to-pypi.yml
Expand Up @@ -23,14 +23,14 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install pip "twine>=3.3" -U
- name: Build wheels
uses: pypa/cibuildwheel@v2.12.1
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: 'cp38-* cp39-* cp310-* cp311-* cp312-*'
CIBW_BUILD: 'cp39-* cp310-* cp311-* cp312-*'
CIBW_SKIP: '*-musllinux_*'
CIBW_ARCHS_LINUX: 'x86_64'
CIBW_ARCHS_WINDOWS: 'AMD64'
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.x'
- name: Install dependencies
run: python -m pip install pip build "twine>=3.3" -U
- name: Build package
Expand Down

0 comments on commit a8d4b56

Please sign in to comment.