ci(deps): bump pypa/cibuildwheel from 3.3.1 to 3.4.0 (#1439) #739
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: Pure Python wheels 🐍 | |
| # Builds and publishes the pure wheels on pypi. | |
| # | |
| # This does not include the main `tket-py` package, which is built using maturin. | |
| # See `python-wheels.yml` for that workflow. | |
| # | |
| # When running on a release event or as a workflow dispatch for a tag, | |
| # and if the tag matches `{package}-v*`, | |
| # this workflow will publish the wheels to pypi. | |
| # If the version is already published, pypi just ignores it. | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| release: | |
| types: | |
| - published | |
| env: | |
| # Pinned version for the uv package manager | |
| UV_VERSION: "0.9.7" | |
| jobs: | |
| # Check if the tag matches the package name, | |
| # or if the workflow is running on a non-release event. | |
| check-tag: | |
| name: Check tag | |
| runs-on: ubuntu-latest | |
| outputs: | |
| run_exts: ${{ steps.check-tag.outputs.run_exts }} | |
| run_eccs: ${{ steps.check-tag.outputs.run_eccs }} | |
| steps: | |
| - name: Check tag | |
| id: check-tag | |
| run: | | |
| echo "run_exts=$RUN_EXTS" >> $GITHUB_OUTPUT | |
| echo "run_eccs=$RUN_ECCS" >> $GITHUB_OUTPUT | |
| env: | |
| RUN_EXTS: ${{ github.event_name != 'release' || ( github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/tket-exts-v') ) }} | |
| RUN_ECCS: ${{ github.event_name != 'release' || ( github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/tket-eccs-v') ) }} | |
| build-publish: | |
| name: Package and publish wheels | |
| needs: check-tag | |
| runs-on: ubuntu-latest | |
| environment: release | |
| permissions: | |
| # IMPORTANT: this permission is mandatory for trusted publishing | |
| id-token: write | |
| strategy: | |
| matrix: | |
| target: | |
| - dir: tket-eccs | |
| name: tket_eccs | |
| run: ${{ needs.check-tag.outputs.run_eccs }} | |
| - dir: tket-exts | |
| name: tket_exts | |
| run: ${{ needs.check-tag.outputs.run_exts }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| if: ${{ matrix.target.run == 'true' }} | |
| - name: Run sccache-cache | |
| if: ${{ matrix.target.run == 'true' }} | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Set up uv | |
| if: ${{ matrix.target.run == 'true' }} | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: ${{ env.UV_VERSION }} | |
| enable-cache: true | |
| - name: Install Python 3.13 | |
| run: uv python install 3.13 | |
| if: ${{ matrix.target.run == 'true' }} | |
| - name: Build sdist and wheels | |
| if: ${{ matrix.target.run == 'true' }} | |
| run: | | |
| cd ${{ matrix.target.dir }} | |
| uvx --from build pyproject-build --installer uv --outdir ../dist | |
| - name: Upload the built packages as artifacts | |
| if: ${{ matrix.target.run == 'true' }} | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: build-${{ matrix.target.dir }}-sdist | |
| path: | | |
| dist/*.tar.gz | |
| dist/*.whl | |
| - name: Test installing the built wheels | |
| if: ${{ matrix.target.run == 'true' }} | |
| run: | | |
| echo "Testing the newly built ${{ matrix.target.name }} wheels..." | |
| uv run -f dist --with ${{ matrix.target.name }} --refresh-package ${{ matrix.target.name }} --no-project -- python -c "import ${{ matrix.target.name }}" | |
| uvx twine check --strict dist/* | |
| - name: Report | |
| if: ${{ (github.event_name == 'release' && matrix.target.run ) || (github.event_name == 'workflow_dispatch' && github.ref_type == 'tag' && startsWith(github.ref, format('refs/tags/{0}-v', matrix.target.dir)) ) }} | |
| run: | | |
| echo "Publishing to PyPI..." | |
| echo "Based on the following workflow variables, this is a new version tag push:" | |
| echo " - event_name: ${{ github.event_name }}" | |
| echo " - ref_type: ${{ github.ref_type }}" | |
| echo " - ref: ${{ github.ref }}" | |
| - name: Publish package distributions to PyPI | |
| if: ${{ (github.event_name == 'release' && matrix.target.run ) || (github.event_name == 'workflow_dispatch' && github.ref_type == 'tag' && startsWith(github.ref, format('refs/tags/{0}-v', matrix.target.dir)) ) }} | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| verbose: true | |
| skip-existing: true |