Skip to content

fix: Update README version (2.0 → 1.1) and fix cibuildwheel tag #34

fix: Update README version (2.0 → 1.1) and fix cibuildwheel tag

fix: Update README version (2.0 → 1.1) and fix cibuildwheel tag #34

Workflow file for this run

name: Make source distribution
on: ['push', 'pull_request']
jobs:
make_sdist:
name: Make source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-dev
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Build source distribution
run: uv build --sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz