Skip to content

mrc/hocr: deal with empty ocr_line elements #256

mrc/hocr: deal with empty ocr_line elements

mrc/hocr: deal with empty ocr_line elements #256

Workflow file for this run

name: Build
on: [push, pull_request]
permissions:
contents: read
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CIBW_BUILD: cp39-* cp310-* cp311-*
CIBW_SKIP: cp36-* cp37-* cp38-* *-win32 *-manylinux_i686 pp* *musllinux*
strategy:
matrix:
os: [ubuntu-24.04, windows-2025, macOS-15]
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.13.1
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BEFORE_BUILD: python -m pip install -r requirements.txt
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl