Skip to content

[MRG] HD Gaussian empirical bures #3533

[MRG] HD Gaussian empirical bures

[MRG] HD Gaussian empirical bures #3533

Workflow file for this run

name: Build wheels
on:
workflow_dispatch:
release:
pull_request:
jobs:
build_wheels:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
if: "contains(github.event.head_commit.message, 'build wheels')"
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==3.1.4
- name: Build wheels
env:
CIBW_SKIP: "cp38* cp*musl* *i686 *win32" # remove pypy on mac and win (wrong version)
run: |
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ strategy.job-index }}
path: ./wheelhouse