We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ab9e6 commit fcaf2e7Copy full SHA for fcaf2e7
scripts/test-homebrew.sh
@@ -17,16 +17,11 @@ fi
17
echo "==> Building deepwork from $REPO_DIR"
18
cd "$REPO_DIR"
19
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
25
# Clean previous builds
26
rm -rf dist/
27
28
# Build the sdist tarball
29
-$PYTHON -m build --sdist
+uv build --sdist
30
31
# Find the built tarball
32
TARBALL=$(ls dist/deepwork-*.tar.gz | head -1)
0 commit comments