Skip to content

Commit

Permalink
fix: install build dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
abetlen committed Sep 25, 2024
1 parent 8e07db0 commit 65222bc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: "recursive"

- uses: actions/setup-python@v5
with:
python-version: "3.9"
Expand All @@ -103,6 +103,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install uv
RUST_LOG=trace python -m uv pip install -e .[all] --verbose
python -m uv pip install build
shell: bash

- name: Install dependencies (Windows)
Expand All @@ -113,12 +114,13 @@ jobs:
python -m pip install --upgrade pip
python -m pip install uv
python -m uv pip install -e .[all] --verbose
python -m uv pip install build
shell: cmd

- name: Build source distribution
run: |
python -m build --sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
Expand Down

0 comments on commit 65222bc

Please sign in to comment.