Add missing/recent PRs to notes #8
Workflow file for this run
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
# SPDX-License-Identifier: BSD-3-Clause | |
# Copyright (c) Contributors to the OpenEXR Project. | |
name: Publish python distribution 📦 to TestPyPI | |
on: | |
# Publish python wheels to test.pypi when a release candidate is tagged, | |
# e.g. v3.4.5-rc, v3.4.5-rc6, etc. | |
push: | |
tags: | |
- v3.[0-9]+.[0-9]+-rc* | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Python Wheels - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
environment: | |
name: testpypi | |
url: https://test.pypi.org/p/openexr | |
permissions: | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install Python | |
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | |
with: | |
python-version: '3.x' | |
- name: Create sdist | |
# Only create it once. | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
env: | |
OPENEXR_RELEASE_CANDIDATE_TAG: ${{ github.ref_name }} | |
run: pipx run build --sdist . --outdir wheelhouse | |
- name: Build wheel | |
uses: pypa/cibuildwheel@d4a2945fcc8d13f20a1b99d461b8e844d5fc6e23 # v2.21.1 | |
with: | |
output-dir: wheelhouse | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 10.15 | |
CIBW_ARCHS_LINUX: x86_64 | |
CIBW_ARCHS_MACOS: x86_64 arm64 universal2 | |
# Build Python 3.7 through 3.11. | |
# Skip python 3.6 since scikit-build-core requires 3.7+ | |
# Skip 32-bit wheels builds on Windows | |
# Also skip the PyPy builds, since they fail the unit tests | |
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-*" | |
CIBW_SKIP: "*-win32 *_i686" | |
CIBW_TEST_SKIP: "*-macosx_universal2:arm64" | |
CIBW_ENVIRONMENT: OPENEXR_RELEASE_CANDIDATE_TAG="${{ github.ref_name }}" | |
- name: Upload artifact | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: wheels-${{ matrix.os }} | |
path: | | |
./wheelhouse/*.whl | |
./wheelhouse/*.tar.gz | |
publish-to-testpypi: | |
name: Publish Python 🐍 distribution 📦 to TestPyPI | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
environment: | |
name: testpypi | |
url: https://test.pypi.org/p/openexr | |
permissions: | |
id-token: write | |
steps: | |
- name: Download Linux artifacts | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: wheels-ubuntu-latest | |
path: dist | |
- name: Download macOS artifacts | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: wheels-macos-latest | |
path: dist | |
- name: Download Windows artifacts | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: wheels-windows-latest | |
path: dist | |
- name: Publish distribution 📦 to TestPyPI | |
uses: pypa/gh-action-pypi-publish@897895f1e160c830e369f9779632ebc134688e1b # v1.10.2 | |
with: | |
repository-url: https://test.pypi.org/legacy/ |