Skip to content

Commit fcaf2e7

Browse files
ncrmroclaude
andcommitted
Use uv build instead of python -m build
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 36ab9e6 commit fcaf2e7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/test-homebrew.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,11 @@ fi
1717
echo "==> Building deepwork from $REPO_DIR"
1818
cd "$REPO_DIR"
1919

20-
PYTHON=$(command -v python3 || command -v python) || { echo "Error: No python found"; exit 1; }
21-
22-
# Ensure build tool is available
23-
$PYTHON -m pip install --quiet build
24-
2520
# Clean previous builds
2621
rm -rf dist/
2722

2823
# Build the sdist tarball
29-
$PYTHON -m build --sdist
24+
uv build --sdist
3025

3126
# Find the built tarball
3227
TARBALL=$(ls dist/deepwork-*.tar.gz | head -1)

0 commit comments

Comments
 (0)