Fix formulaic reference #326
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
name: Build and upload to PyPI | |
on: | |
pull_request: | |
release: | |
types: | |
- published | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macos-13, macos-14] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Set up micromamba | |
uses: mamba-org/setup-micromamba@06375d89d211a1232ef63355742e9e2e564bc7f7 | |
- name: Build wheels | |
if: github.event_name != 'release' | |
uses: pypa/cibuildwheel@v2.22.0 | |
env: | |
CIBW_ARCHS_LINUX: auto | |
- name: Build wheels (release) | |
if: github.event_name == 'release' && github.event.action == 'published' | |
uses: pypa/cibuildwheel@v2.22.0 | |
env: | |
CIBW_ARCHS_LINUX: x86_64 aarch64 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl | |
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.10' | |
- name: Install build dependencies | |
run: python -m pip install setuptools setuptools-scm wheel mako numpy 'Cython!=3.0.4' | |
- name: Build sdist | |
run: python setup.py sdist | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: dist/*.tar.gz | |
upload_testpypi: | |
if: github.event_name == 'release' && github.event.action == 'published' | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
environment: | |
name: release | |
url: https://test.pypi.org/p/tabmat | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
path: dist | |
- uses: pypa/gh-action-pypi-publish@v1.12.2 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
upload_pypi: | |
if: github.event_name == 'release' && github.event.action == 'published' | |
needs: [build_wheels, build_sdist, upload_testpypi] | |
runs-on: ubuntu-latest | |
environment: | |
name: release | |
url: https://pypi.org/p/tabmat | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
path: dist | |
- uses: pypa/gh-action-pypi-publish@v1.12.2 |