Skip to content

Commit

Permalink
develop to main
Browse files Browse the repository at this point in the history
update workflow to fix bug in windows
  • Loading branch information
hspark1212 committed May 24, 2024
2 parents 81c8821 + c08d084 commit 57330e6
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,21 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install cibuildwheel
run: pip install cibuildwheel

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
run: cibuildwheel --output-dir wheelhouse
env:
# Build wheels for CPython only, skipping PyPy
CIBW_BUILD: "cp*"
CIBW_SKIP: "*-pp*"

CIBW_BUILD: "cp*"
CIBW_SKIP: "*-pp*"

- uses: actions/upload-artifact@v3
with:
name: artifact-name
path: ./wheelhouse/*.whl
path: ./wheelhouse/*.whl

0 comments on commit 57330e6

Please sign in to comment.