From b3cdea9a8d13d6dccf79e61b8eba37afc3f26107 Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Mon, 24 Aug 2026 17:51:21 +0200 Subject: [PATCH] black: add build-black.yml for riscv64 mypyc wheels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit black publishes mypyc-compiled wheels for common platforms but not riscv64. Unlike tomli (flit-swap) or mypy (setuptools), black uses the hatch-mypyc build hook, gated on HATCH_BUILD_HOOKS_ENABLE=1 in its committed [tool.cibuildwheel] config. We check out the tag and inherit that config wholesale (mypyc hook, CC=clang, the pytest suite, test-extras), overriding only CIBW_MANYLINUX_RISCV64_IMAGE — every runtime and test dependency (aiohttp, ipython, ...) already resolves from public PyPI. Matrix is cp312/cp313/cp314; upstream skips free-threaded ("mypyc doesn't have great support for free threaded builds"), so no cp314t. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/build-black.yml | 86 +++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 .github/workflows/build-black.yml diff --git a/.github/workflows/build-black.yml b/.github/workflows/build-black.yml new file mode 100644 index 00000000..d1b844fe --- /dev/null +++ b/.github/workflows/build-black.yml @@ -0,0 +1,86 @@ +# SPDX-FileCopyrightText: 2026 The RISE Project +# SPDX-License-Identifier: MIT +--- +# This workflow is based on the `mypyc` job in: +# https://github.com/psf/black/blob/26.5.1/.github/workflows/pypi_upload.yml +# +# black publishes mypyc-compiled wheels for common platforms but not riscv64. Its +# committed [tool.cibuildwheel] config drives the whole build (hatch-mypyc hook +# gated on HATCH_BUILD_HOOKS_ENABLE=1, CC=clang, the pytest suite), so we check out +# the tag and inherit it, overriding only the riscv64 image. Setting CIBW_ENVIRONMENT +# here would *replace* that table and silently drop the mypyc trigger — so we don't. +name: Build black wheels (riscv64) + +on: + workflow_dispatch: + inputs: + version: + description: 'black version to build (git tag, e.g. 26.5.1)' + required: true + default: '26.5.1' + pull_request: + paths: + - '.github/workflows/build-black.yml' + +concurrency: + group: ${{ github.workflow }}-${{ inputs.version || '26.5.1' }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +permissions: + contents: read # to fetch code (actions/checkout) + +env: + # `inputs.version` is empty on pull_request events; default there. + BLACK_VERSION: ${{ inputs.version || '26.5.1' }} + MANYLINUX_RISCV64_IMAGE: quay.io/pypa/manylinux_2_39_riscv64 + +jobs: + build_wheels: + name: Build black ${{ inputs.version || '26.5.1' }} ${{ matrix.python }}-manylinux_riscv64 + runs-on: ubuntu-24.04-riscv + timeout-minutes: 120 + strategy: + fail-fast: false + matrix: + # mypyc emits per-interpreter (non-abi3) wheels; upstream skips free-threaded + # ("mypyc doesn't have great support for free threaded builds"), so no cp314t. + python: ["cp312", "cp313", "cp314"] + + steps: + - name: Checkout black ${{ env.BLACK_VERSION }} + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + with: + repository: psf/black + ref: ${{ env.BLACK_VERSION }} + persist-credentials: false + + - name: Build wheels + uses: pypa/cibuildwheel@1828c10ab37f080699c7b81cea34097c684a7074 # v4.2.0 + with: + only: ${{ matrix.python }}-manylinux_riscv64 + env: + CIBW_MANYLINUX_RISCV64_IMAGE: ${{ env.MANYLINUX_RISCV64_IMAGE }} + + - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + with: + name: black-${{ env.BLACK_VERSION }}-${{ matrix.python }}-manylinux_riscv64 + path: wheelhouse/*.whl + if-no-files-found: error + + publish: + name: Publish black ${{ inputs.version || '26.5.1' }} to GitLab + needs: [build_wheels] + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + + steps: + - name: Publish wheels and open docs PR + uses: riseproject-dev/python-wheels/actions/publish-wheels@main + with: + artifact-pattern: black-${{ env.BLACK_VERSION }}-*-manylinux_riscv64 + gitlab-username: ${{ vars.GITLAB_DEPLOY_USER }} + gitlab-token: ${{ secrets.GITLAB_DEPLOY_TOKEN }} + gitlab-project-id: ${{ vars.GITLAB_PROJECT_ID }} + gh-token: ${{ secrets.GITHUB_TOKEN }}