Skip to content

Updated release script to include twine, updated python version in py… #76

Updated release script to include twine, updated python version in py…

Updated release script to include twine, updated python version in py… #76

Workflow file for this run

name: Build wheels
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: cp36-* cp37-* cp38-* cp313-* pp* *-musllinux* *-manylinux_i686
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ github.run_id }}
path: ./wheelhouse/*.whl