bump version #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Python Wheels | |
# Build wheels only on a release branch or when requested since it's expensive | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "Version to force on wheels" | |
required: false | |
type: string | |
default: "" | |
push: | |
branches: | |
- 'maint-**' | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macOS-11] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-tags: true | |
- uses: actions/setup-python@v3 | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.15.0 | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse python/geoarrow-c | |
env: | |
CIBW_ARCHS_MACOS: x86_64 arm64 | |
# Optional (test suite will pass if these are not available) | |
CIBW_BEFORE_TEST: pip install --only-binary ":all:" pyarrow numpy || pip install --only-binary ":all:" numpy || true | |
CIBW_TEST_REQUIRES: pytest | |
CIBW_TEST_COMMAND: pytest {package}/tests | |
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ github.event.inputs.version }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl |