Skip to content

Release v0.3.0

Release v0.3.0 #19

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
paths-ignore:
- "**/**.md"
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, ubuntu-22.04-arm64]
python-version: [3.9]
if: startsWith(github.event.head_commit.message, 'Release') || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cffi cibuildwheel wheel
- name: Build and test wheels
env:
CIBW_ARCHS: "auto64"
CIBW_SKIP: "cp36-* cp37-* pp37-* pp310-*"
CC: clang
run: |
python -m cibuildwheel --output-dir wheelhouse
- name: Save Wheels
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl