Bump version: 0.31.0 → 0.32.0 #54
Workflow file for this run
This file contains 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
# Taken from https://cibuildwheel.readthedocs.io/en/stable/setup/ | |
name: Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_PLATFORM: auto | |
CIBW_ARCHS: auto64 | |
CIBW_SKIP: cp*-musllinux* | |
CIBW_ARCHS_MACOS: x86_64 arm64 | |
CIBW_BUILD_VERBOSITY: 3 | |
CIBW_BEFORE_BUILD: "pip install -r requirements_dev.txt && pip install ." | |
CIBW_BEFORE_BUILD_MACOS: "pip install -r requirements_dev.txt && pip install ." | |
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: wheelhouse | |
name: dist-${{ matrix.os }}-${{ matrix.python-version }} | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.9' | |
- name: Build sdist | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r requirements_dev.txt | |
python setup.py sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: dist/*.tar.gz | |
upload_pypi: | |
needs: [ build_wheels, build_sdist ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: dist-* | |
merge-multiple: true | |
path: dist | |
- uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.TWINE_PASSWORD }} |