Use built-in Self type in __init__.pyi when available #153
Workflow file for this run
This file contains hidden or 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
| name: Build secondary wheels | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| pull_request: | |
| paths: | |
| - '**' | |
| workflow_dispatch: | |
| jobs: | |
| build_wheels_qemu: | |
| name: > | |
| Build secondary wheels with QEMU for py ${{ matrix.py }}, | |
| os ${{ matrix.cbw_os }}, arch ${{ matrix.arch }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| py: [310, 39, 38] | |
| cbw_os: [manylinux_, musllinux_] | |
| arch: [ppc64le, s390x, riscv64] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| with: | |
| platforms: all | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v3.2.1 | |
| env: | |
| CIBW_BUILD: > | |
| cp${{ matrix.py }}-${{ matrix.cbw_os }}${{ matrix.arch }} | |
| CIBW_ARCHS: ${{ matrix.arch }} | |
| CIBW_BUILD_FRONTEND: > | |
| ${{ | |
| matrix.cbw_os == 'musllinux_' | |
| && 'build' | |
| || 'build[uv]' | |
| }} | |
| CIBW_CONTAINER_ENGINE: podman | |
| CIBW_TEST_REQUIRES: pytest | |
| CIBW_TEST_COMMAND: > | |
| python -X faulthandler {package}/test/debug.py | |
| && python -X faulthandler -m pytest -p no:faulthandler | |
| -s {package} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: > | |
| secondary_wheel_qemu_artifact_py${{ matrix.py }}_os_ | |
| ${{ matrix.cbw_os }}arch_${{ matrix.arch }} | |
| path: ./wheelhouse/*.whl | |
| build_old_wheels_qemu: | |
| name: > | |
| Build old wheels with QEMU for py ${{ matrix.py }}, | |
| os ${{ matrix.cbw_os }}, arch ${{ matrix.arch }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| py: [37, 36] | |
| cbw_os: [manylinux_, musllinux_] | |
| arch: [ppc64le, s390x] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| with: | |
| platforms: all | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23.3 | |
| env: | |
| CIBW_BUILD: > | |
| cp${{ matrix.py }}-${{ matrix.cbw_os }}${{ matrix.arch }} | |
| CIBW_ARCHS: ${{ matrix.arch }} | |
| CIBW_BUILD_FRONTEND: build[uv] | |
| CIBW_CONTAINER_ENGINE: podman | |
| CIBW_TEST_REQUIRES: pytest | |
| CIBW_TEST_COMMAND: > | |
| python -X faulthandler {package}/test/debug.py | |
| && python -X faulthandler -m pytest -p no:faulthandler | |
| -s {package} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: > | |
| old_wheel_qemu_artifact_${{ matrix.py }}_os_ | |
| ${{ matrix.cbw_os }}arch_${{ matrix.arch }} | |
| path: ./wheelhouse/*.whl | |
| build_wheels: | |
| name: > | |
| Build secondary wheels for py ${{ matrix.py }}, | |
| os ${{ matrix.cbw_os }}, arch ${{ matrix.arch }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| py: [310, 39, 38] | |
| os: [ | |
| ubuntu-latest, | |
| ubuntu-24.04-arm, | |
| windows-latest, | |
| macos-latest | |
| ] | |
| include: | |
| - os: ubuntu-latest | |
| cbw_os: musllinux_ | |
| arch: x86_64 | |
| - os: ubuntu-24.04-arm | |
| cbw_os: manylinux_ | |
| arch: aarch64 | |
| - os: ubuntu-24.04-arm | |
| cbw_os: musllinux_ | |
| arch: aarch64 | |
| - os: windows-latest | |
| cbw_os: win_ | |
| arch: arm64 | |
| - os: macos-latest | |
| cbw_os: macosx_ | |
| arch: x86_64 | |
| - os: macos-latest | |
| cbw_os: macosx_ | |
| arch: arm64 | |
| - os: macos-latest | |
| cbw_os: macosx_ | |
| arch: universal2 | |
| - os: ubuntu-latest | |
| cbw_os: manylinux_ | |
| arch: i686 | |
| - os: ubuntu-latest | |
| cbw_os: musllinux_ | |
| arch: i686 | |
| - os: ubuntu-24.04-arm | |
| cbw_os: manylinux_ | |
| arch: armv7l | |
| - os: ubuntu-24.04-arm | |
| cbw_os: musllinux_ | |
| arch: armv7l | |
| - os: windows-latest | |
| cbw_os: win32 | |
| arch: "" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v3.2.1 | |
| env: | |
| CIBW_BUILD: > | |
| cp${{ matrix.py }}-${{ matrix.cbw_os }}${{ matrix.arch }} | |
| CIBW_ARCHS: ${{ matrix.arch }} | |
| CIBW_BUILD_FRONTEND: build[uv] | |
| CIBW_CONTAINER_ENGINE: podman | |
| CIBW_TEST_REQUIRES: pytest | |
| CIBW_TEST_COMMAND: > | |
| python -X faulthandler {package}/test/debug.py | |
| && python -X faulthandler -m pytest -p no:faulthandler | |
| -s {package} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: > | |
| secondary_wheel_artifact_py${{ matrix.py }}_os_ | |
| ${{ matrix.cbw_os }}arch_${{ matrix.arch }} | |
| path: ./wheelhouse/*.whl | |
| build_old_wheels: | |
| name: > | |
| Build old wheels for py ${{ matrix.py }}, | |
| os ${{ matrix.cbw_os }}, arch ${{ matrix.arch }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| py: [37, 36] | |
| os: [ | |
| ubuntu-latest, | |
| ubuntu-24.04-arm, | |
| windows-latest, | |
| macos-latest | |
| ] | |
| include: | |
| - os: ubuntu-latest | |
| cbw_os: manylinux_ | |
| arch: x86_64 | |
| - os: ubuntu-latest | |
| cbw_os: musllinux_ | |
| arch: x86_64 | |
| - os: ubuntu-24.04-arm | |
| cbw_os: manylinux_ | |
| arch: aarch64 | |
| - os: ubuntu-24.04-arm | |
| cbw_os: musllinux_ | |
| arch: aarch64 | |
| - os: windows-latest | |
| cbw_os: win_ | |
| arch: amd64 | |
| - os: macos-latest | |
| cbw_os: macosx_ | |
| arch: x86_64 | |
| - os: ubuntu-latest | |
| cbw_os: manylinux_ | |
| arch: i686 | |
| - os: ubuntu-latest | |
| cbw_os: musllinux_ | |
| arch: i686 | |
| - os: ubuntu-24.04-arm | |
| cbw_os: manylinux_ | |
| arch: armv7l | |
| - os: ubuntu-24.04-arm | |
| cbw_os: musllinux_ | |
| arch: armv7l | |
| - os: windows-latest | |
| cbw_os: win32 | |
| arch: "" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23.3 | |
| env: | |
| CIBW_BUILD: > | |
| cp${{ matrix.py }}-${{ matrix.cbw_os }}${{ matrix.arch }} | |
| CIBW_ARCHS: ${{ matrix.arch == '' && 'x86' || matrix.arch }} | |
| CIBW_BUILD_FRONTEND: build[uv] | |
| CIBW_CONTAINER_ENGINE: podman | |
| CIBW_TEST_REQUIRES: pytest | |
| CIBW_TEST_COMMAND: > | |
| python -X faulthandler {package}/test/debug.py | |
| && python -X faulthandler -m pytest -p no:faulthandler | |
| -s {package} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: > | |
| old_wheel_artifact_py${{ matrix.py }}_os_ | |
| ${{ matrix.cbw_os }}arch_${{ matrix.arch }} | |
| path: ./wheelhouse/*.whl |