Skip to content

Commit

Permalink
Builds wheel without cibuildwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Mar 10, 2024
1 parent c88440c commit b287ac0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,18 @@ jobs:

- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
python -m pip install cibuildwheel==2.16.5
python -m pip install --user --upgrade pip
# python -m pip install cibuildwheel==2.16.5

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
run: python -m buil
# run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value

- uses: actions/upload-artifact@v4
with:
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
# path: ./wheelhouse/*.whl
path: dist/*.whl

0 comments on commit b287ac0

Please sign in to comment.