1.1.11 #80
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 and upload to PyPI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: | |
| - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
| env: | |
| CIBW_TEST_EXTRAS: test | |
| CIBW_TEST_COMMAND: "pytest {project}/tests" | |
| CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64" | |
| CIBW_ARCHS_MACOS: "x86_64 universal2" | |
| jobs: | |
| sdist: | |
| name: Creating source release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - name: Setting up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.8 | |
| - name: Installing python build dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install --upgrade setuptools | |
| - name: Building source distribution | |
| run: | | |
| pip install -e ".[release]" | |
| python setup.py sdist | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: dist/*.tar.gz | |
| build_wheels: | |
| needs: [sdist] | |
| name: "[${{ strategy.job-index }}/${{ strategy.job-total }}] py${{ matrix.py }} on ${{ matrix.os }}" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: [ubuntu-20.04, windows-2022, macos-11] | |
| py: ["cp39", "cp310", "cp311", "cp312", "cp313", "pp37", "pp38", "pp39"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-python@v5 | |
| name: Setting up Python | |
| with: | |
| python-version: '3.8' | |
| - name: Set up QEMU | |
| if: runner.os == 'Linux' | |
| uses: docker/setup-qemu-action@v1 | |
| with: | |
| platforms: all | |
| - name: Build & test wheels | |
| uses: pypa/[email protected] | |
| env: | |
| CIBW_ARCHS_LINUX: auto aarch64 ppc64le | |
| CIBW_BUILD: "${{ matrix.py }}-*" | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: ./wheelhouse/*.whl | |
| upload_all: | |
| needs: [build_wheels, sdist] | |
| name: Uploading built packages to pypi for release. | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v2 | |
| with: | |
| name: artifact | |
| path: dist | |
| - uses: pypa/[email protected] | |
| with: | |
| user: ${{ secrets.PYPI_USERNAME }} | |
| password: ${{ secrets.PYPI_PASSWORD }} |