Skip to content

Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows #32

Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows

Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows #32

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build-sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
pip install -r dev-requirements.txt
- name: Create sdist
run: |
python setup.py sdist
build-wheels:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cibuildwheel==2.23.2
- name: Build Python wheels
run: python -m cibuildwheel --output-dir wheelhouse