Skip to content

docs: Update projects (#2194) #96

docs: Update projects (#2194)

docs: Update projects (#2194) #96

Workflow file for this run

# SPDX-FileCopyrightText: 2026 The RISE Project
# SPDX-License-Identifier: MIT
---
# This workflow is based on: https://github.com/pyapp-kit/psygnal/blob/v0.15.1/.github/workflows/pypi.yml
name: Build psygnal wheels (riscv64)
on:
workflow_dispatch:
inputs:
version:
description: 'Version glob to (re)build; empty builds every version of docs/packages/psygnal.yaml not released yet'
required: false
default: ''
pull_request:
branches: [main]
paths:
- '.github/workflows/build-psygnal.yml'
- 'docs/packages/psygnal.yaml'
push:
branches: [main]
paths:
- '.github/workflows/build-psygnal.yml'
- 'docs/packages/psygnal.yaml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # to fetch code (actions/checkout)
env:
MANYLINUX_RISCV64_IMAGE: quay.io/pypa/manylinux_2_39_riscv64
jobs:
setup:
uses: $/.github/workflows/_setup.yml
with:
package: psygnal
version: ${{ inputs.version }}
build_wheels:
needs: [setup]
if: needs.setup.outputs.versions != '[]'
name: Build psygnal ${{ matrix.version }} ${{ matrix.python }}-manylinux_riscv64
runs-on: ubuntu-24.04-riscv
strategy:
fail-fast: false
matrix:
version: ${{ fromJSON(needs.setup.outputs.versions) }}
# mypyc emits per-interpreter (non-abi3) wheels; upstream ships no
# free-threaded wheel, so cp314t is out.
python: ["cp312", "cp313", "cp314"]
env:
PSYGNAL_VERSION: ${{ matrix.version }}
steps:
- name: Checkout psygnal ${{ env.PSYGNAL_VERSION }}
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: pyapp-kit/psygnal
ref: v${{ env.PSYGNAL_VERSION }}
persist-credentials: false
- name: Build wheels
uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0
with:
output-dir: wheelhouse/
only: ${{ matrix.python }}-manylinux_riscv64
env:
CIBW_MANYLINUX_RISCV64_IMAGE: ${{ env.MANYLINUX_RISCV64_IMAGE }}
# Upstream's uv frontend asserts a host `uv`, which the runner has not got.
# --no-isolation makes the mypy pin below stick.
CIBW_BUILD_FRONTEND: "build; args: --no-isolation"
# Restates the mypyc hook's own [tool.hatch.build...hooks.mypyc] dependencies,
# which --no-isolation needs preinstalled; psygnal 0.16 raised its mypy floor
# to >=2.1.0 (was <1.20, pinned for a 0.15.1 mypyc miscompile since fixed).
CIBW_BEFORE_BUILD: >-
pip install "hatchling>=1.8.0" hatch-vcs "hatch-mypyc>=0.13.0"
"mypy>=2.1.0" "mypy_extensions>=0.4.2" "pydantic!=2.10.0" types-attrs
"msgspec; python_version < '3.14'"
# Restates upstream's [tool.cibuildwheel.environment], which this replaces.
# only-binary keeps the compiled deps on the registry's riscv64 wheels.
CIBW_ENVIRONMENT: >-
HATCH_BUILD_HOOKS_ENABLE=1
PIP_EXTRA_INDEX_URL=https://pypi.riseproject.dev/simple/
PIP_ONLY_BINARY=numpy,pydantic-core,msgspec
# The mypyc hook is opt-in, and a failure to enable it yields a
# pure-Python wheel under a manylinux tag.
CIBW_TEST_COMMAND: >-
python -c "import psygnal; assert psygnal._compiled, 'wheel is not compiled'"
&& pytest {project}/tests -v
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: psygnal-${{ env.PSYGNAL_VERSION }}-${{ matrix.python }}-manylinux_riscv64
path: wheelhouse/*.whl
if-no-files-found: error
publish:
name: Publish psygnal ${{ matrix.version }}
needs: [setup, build_wheels]
if: needs.setup.outputs.versions != '[]'
strategy:
fail-fast: false
matrix:
version: ${{ fromJSON(needs.setup.outputs.versions) }}
permissions:
contents: write
pull-requests: write
uses: $/.github/workflows/_publish-wheel.yml
secrets:
app-private-key: ${{ secrets.RISEPROJECT_APP_PRIVATE_KEY }}
with:
artifact-pattern: psygnal-${{ matrix.version }}-*-manylinux_riscv64