From 65222bc4931e8d5cf637a8d5f966da2f46897837 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Wed, 25 Sep 2024 14:27:19 -0400 Subject: [PATCH] fix: install build dependency --- .github/workflows/build-and-release.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-release.yaml b/.github/workflows/build-and-release.yaml index 3f85a30fe..bfa97decd 100644 --- a/.github/workflows/build-and-release.yaml +++ b/.github/workflows/build-and-release.yaml @@ -92,7 +92,7 @@ jobs: - uses: actions/checkout@v4 with: submodules: "recursive" - + - uses: actions/setup-python@v5 with: python-version: "3.9" @@ -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) @@ -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