Skip to content

Release: Update cibuildwheel for Python 3.14 #101

Release: Update cibuildwheel for Python 3.14

Release: Update cibuildwheel for Python 3.14 #101

Workflow file for this run

name: Build Pull Requests
on: [pull_request]
jobs:
formatting:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: ruff
run: |
pip install ruff==0.9.6
ruff check .
build_wheels:
name: Build wheel on ${{matrix.platform}}
runs-on: ${{matrix.platform}}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest, macos-15-intel]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
name: wheels-${{ matrix.platform }}