name: Build wheels
on:
push:
tags:
- "py-v*"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linux:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
manylinux: "2_28"
- runner: ubuntu-latest
target: x86
manylinux: "2_28"
- runner: ubuntu-latest
target: aarch64
manylinux: "2_28"
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
version: "0.5.x"
- name: Install Python versions
run: uv python install 3.10 3.13 pypy3.11
- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.13 --features abi3-py311 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
manylinux: ${{ matrix.platform.manylinux }}
before-script-linux: |
# Install libclang for bindgen (required by lerc-sys)
if command -v yum &> /dev/null; then
yum install -y clang-devel
elif command -v apt-get &> /dev/null; then
apt-get update && apt-get install -y libclang-dev
fi
- name: Build version-specific wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.10 -i pypy3.11 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
manylinux: ${{ matrix.platform.manylinux }}
before-script-linux: |
# Install libclang for bindgen (required by lerc-sys)
if command -v yum &> /dev/null; then
yum install -y clang-devel
elif command -v apt-get &> /dev/null; then
apt-get update && apt-get install -y libclang-dev
fi
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist
musllinux:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
- runner: ubuntu-latest
target: x86
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
version: "0.5.x"
- name: Install Python versions
run: uv python install 3.10 3.13 pypy3.11
- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.13 --no-default-features --features abi3-py311 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
manylinux: musllinux_1_2
- name: Build version-specific wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.10 -i pypy3.11 --no-default-features --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
manylinux: musllinux_1_2
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: dist
windows:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: windows-latest
target: x64
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"
- uses: actions/setup-python@v6
with:
python-version: 3.13
architecture: ${{ matrix.platform.target }}
- name: Remove symlink (not supported in Windows wheels)
run: Remove-Item -Path python/python/async_tiff/store -Force
shell: pwsh
- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.13 --features abi3-py311 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
- name: Build version-specific wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.10 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
name: wheels-windows-${{ matrix.platform.target }}
path: dist
macos:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: macos-15-intel
target: x86_64
- runner: macos-15
target: aarch64
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
version: "0.5.x"
- name: Install Python versions
run: uv python install 3.10 3.13 pypy3.11
- name: Build abi3-py311 wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.13 --features abi3-py311 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
- name: Build version-specific wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i 3.10 -i pypy3.11 --features extension-module --manifest-path python/Cargo.toml
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v7
with:
name: wheels-macos-${{ matrix.platform.target }}
path: dist
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist --manifest-path python/Cargo.toml
- name: Test sdist
run: |
python -m pip install dist/*.tar.gz
- name: Upload sdist
uses: actions/upload-artifact@v7
with:
name: wheels-sdist
path: dist
release:
runs-on: ubuntu-latest
name: Release
environment:
name: pypi-release
url: https://pypi.org/p/async-tiff
permissions:
id-token: write
if: startsWith(github.ref, 'refs/tags/')
needs: [linux, musllinux, windows, macos, sdist]
steps:
- uses: actions/download-artifact@v8
with:
pattern: wheels-*
merge-multiple: true
path: dist
- uses: actions/setup-python@v6
with:
python-version: 3.11
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1