Skip to content

Fix build

Fix build #9

Workflow file for this run

jobs:
build:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
# - name: Installation
# run:
# |
# python -m pip install --upgrade pip
# pip install "cython<3.0"
# pip install "numpy<2"
# pip install -e .
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.19.2
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# env:
# - CIBW_BUILD: cp38-* cp39-* cp310-*
# - CIBW_SKIP: "*-win32"
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
name: meiosis
on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize, ready_for_review, review_requested]