Skip to content

v0.6.5

v0.6.5 #9

Workflow file for this run

# Build wheels using cibuildwheel https://cibuildwheel.readthedocs.io/
name: Wheels
on:
push:
workflow_dispatch:
inputs:
cibw_build:
description: 'CIBW_BUILD'
default: 'cp312-*'
jobs:
build_wheels:
name: Wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
arch: "x86_64"
- os: windows-2022
arch: "AMD64"
- os: macos-14
arch: "x86_64"
- os: macos-15
arch: "arm64"
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: ${{ github.event.inputs.cibw_build }}
CIBW_ARCHS: "${{ matrix.arch }}"
- run: ls -lh wheelhouse
shell: bash
- uses: actions/upload-artifact@v4
with:
name: program_wheel-${{ matrix.os }}
path: wheelhouse/*.whl