Skip to content

Cleanup generated directory and fixed some python 3.12 warnings #148

Cleanup generated directory and fixed some python 3.12 warnings

Cleanup generated directory and fixed some python 3.12 warnings #148

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macOS-13]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# Used to host cibuildwheel
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
if-no-files-found: error