Skip to content

Commit

Permalink
Simplify gh action as wheel is universal
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiopasra committed Jun 30, 2020
1 parent cc52b33 commit dcb06df
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,17 @@ jobs:
with:
python-version: '3.7'

- name: Install cibuildwheel
- name: Install wheel
run: |
python -m pip install cibuildwheel==1.5.1
- name: Install Visual C++ for Python 2.7
if: runner.os == 'Windows'
run: |
choco install vcpython27 -f -y
python -m pip install setuptools wheel
- name: Build wheels
run: |
python -m cibuildwheel --output-dir wheelhouse
python -m pip wheel . -w wheelhouse
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
path: ./wheelhouse/megaradrp*.whl

build_sdist:
name: Build source distribution
Expand Down

0 comments on commit dcb06df

Please sign in to comment.