Skip to content

Update version to avoid PyPI version conflict. #10

Update version to avoid PyPI version conflict.

Update version to avoid PyPI version conflict. #10

Workflow file for this run

name: Build
on: push
jobs:
build_wheel:
name: Build wheel
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: ci-wheels-python${{ matrix.python-version }}-${{ strategy.job-index }}
path: ./dist/*.whl