Skip to content

Merge pull request #28 from django-components/jo-refactor-get-parserc… #12

Merge pull request #28 from django-components/jo-refactor-get-parserc…

Merge pull request #28 from django-components/jo-refactor-get-parserc… #12

Workflow file for this run

# This file is autogenerated by maturin v1.8.1
# To update, run
#
# maturin generate-ci github
#
name: Publish to PyPI
on:
push:
tags:
- "*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
jobs:
linux:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
- runner: ubuntu-latest
target: x86
- runner: ubuntu-latest
target: aarch64
- runner: ubuntu-latest
target: armv7
- runner: ubuntu-latest
target: s390x
- runner: ubuntu-latest
target: ppc64le
steps:
- uses: actions/checkout@v6
with:
# Initialize Ruff submodule
submodules: recursive
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: "true"
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v6
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
- runner: ubuntu-latest
target: aarch64
- runner: ubuntu-latest
target: armv7
steps:
- uses: actions/checkout@v6
with:
# Initialize Ruff submodule
submodules: recursive
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: "true"
manylinux: musllinux_1_2
- name: Upload wheels
uses: actions/upload-artifact@v6
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: dist
windows:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: windows-latest
target: x64
- runner: windows-latest
target: x86
steps:
- uses: actions/checkout@v6
with:
# Initialize Ruff submodule
submodules: recursive
# Explicitly install all supported versions of Python on Windows.
# Otherwise, as of Jan 2026, if we installed only Python 3.14,
# then the Windows runner would NOT generate wheels for Python 3.8.
# See https://github.com/django-components/djc-core/issues/22
# And https://pypi.org/project/djc-core-html-parser/1.0.3/#files
- name: Setup Python 3.8
uses: actions/setup-python@v6
with:
python-version: "3.8"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.9
uses: actions/setup-python@v6
with:
python-version: "3.9"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.11
uses: actions/setup-python@v6
with:
python-version: "3.11"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: "3.13"
architecture: ${{ matrix.platform.target }}
- name: Setup Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"
architecture: ${{ matrix.platform.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v6
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-latest
target: aarch64
steps:
- uses: actions/checkout@v6
with:
# Initialize Ruff submodule
submodules: recursive
# Explicitly install all supported versions of Python on macOS.
# Otherwise, as of Jan 2026, if we installed only Python 3.14,
# then the macOS runner would NOT generate wheels for Python 3.8, 3.9, 3.10.
# See https://github.com/django-components/djc-core/issues/22
# And https://pypi.org/project/djc-core/1.1.0/#files
#
# NOTE: Python 3.8 and 3.9 are not available on macOS ARM64 runners (macos-latest with 'aarch64' target)
# They were removed from the runner images, so we skip them on ARM64 to avoid build failures.
# They are still built on Intel macOS (macos-15-intel with x86_64).
- name: Setup Python 3.8
if: matrix.platform.target != 'aarch64'
uses: actions/setup-python@v6
with:
python-version: "3.8"
- name: Setup Python 3.9
if: matrix.platform.target != 'aarch64'
uses: actions/setup-python@v6
with:
python-version: "3.9"
- name: Setup Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Setup Python 3.11
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Setup Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Setup Python 3.14
uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v6
with:
name: wheels-macos-${{ matrix.platform.target }}
path: dist
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
# Initialize Ruff submodule
submodules: recursive
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v6
with:
name: wheels-sdist
path: dist
release:
name: Release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
needs: [linux, musllinux, windows, macos, sdist]
permissions:
# Use to sign the release artifacts
id-token: write
# Used to upload release artifacts
contents: write
# Used to generate artifact attestation
attestations: write
steps:
- uses: actions/download-artifact@v7
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v3
with:
subject-path: "wheels-*/*"
- name: Publish to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --non-interactive --skip-existing wheels-*/*