Drop py3.13 #63
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 & Test | |
on: | |
schedule: | |
- cron: '0 1 * * 4' # Runs every Thursday at 1 AM (UTC) | |
pull_request: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_wheels: | |
name: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.python }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13, macos-14] | |
python: [cp310, cp311, cp312] # As of 3/Oct/24 ortools was not compatible with cp313 | |
include: | |
# Linux builds (x86_64 and ARM) | |
- os: ubuntu-latest | |
arch: "x86_64" | |
- os: ubuntu-latest | |
arch: "aarch64" | |
# Windows builds (x86_64 only) | |
- os: windows-latest | |
arch: "AMD64" | |
# macOS Intel | |
- os: macos-13 | |
arch: "x86_64" | |
# macOS Apple Silicon | |
- os: macos-14 | |
arch: "arm64" | |
fail-fast: false | |
steps: | |
- name: Set up QEMU | |
if: matrix.arch == 'aarch64' | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: arm64 | |
- uses: actions/checkout@v3 | |
- name: Build and test wheels | |
uses: pypa/[email protected] # You may need to update to get latest Python versions | |
env: | |
# Build | |
# NOTE: build dependcies are defined in pyproject.toml (including numpy version) | |
CIBW_BUILD_FRONTEND: "build" | |
CIBW_ARCHS: ${{ matrix.arch }} | |
CIBW_BUILD: "${{ matrix.python }}*" | |
CIBW_SKIP: "*musllinux*" | |
# Test | |
CIBW_BEFORE_TEST: "pip install --upgrade pip && pip install -r requirements-dev.txt && pip list" | |
CIBW_TEST_COMMAND: "pytest {project}/tests" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl |