Skip to content

Commit 2ca7af4

Browse files
committed
Remove Brewfile and check for uv in bootstrap script
uv should be installed via the standard installer, not Homebrew. Bootstrap now checks for uv and directs users to the install docs.
1 parent e87dc30 commit 2ca7af4

2 files changed

Lines changed: 4 additions & 14 deletions

File tree

Brewfile

Lines changed: 0 additions & 1 deletion
This file was deleted.

scripts/bootstrap

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,10 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then
8-
brew bundle check >/dev/null 2>&1 || {
9-
echo -n "==> Install Homebrew dependencies? (y/N): "
10-
read -r response
11-
case "$response" in
12-
[yY][eE][sS]|[yY])
13-
brew bundle
14-
;;
15-
*)
16-
;;
17-
esac
18-
echo
19-
}
7+
if ! command -v uv &> /dev/null; then
8+
echo "Error: uv is not installed."
9+
echo "Install it from https://docs.astral.sh/uv/getting-started/installation/"
10+
exit 1
2011
fi
2112

2213
echo "==> Installing Python dependencies…"

0 commit comments

Comments
 (0)