Skip to content

Commit b5cf52d

Browse files
committed
Fix Vercel build by using uv pip install instead of pip3. Vercel CLI upgrade from 50.4.5 - 50.4.9
1 parent 2266231 commit b5cf52d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/vercel-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo "=== VERCEL BUILD - PRODUCTION ==="
66

77
# Install dependencies
88
echo "Installing dependencies..."
9-
pip3 install -r requirements.txt
9+
uv pip install --system -r requirements.txt
1010

1111
# Create minimal mkdocs wrapper for mike to find
1212
echo "Creating minimal mkdocs wrapper for mike..."

vercel.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"buildCommand": "./scripts/vercel-build.sh",
33
"outputDirectory": "site",
4-
"installCommand": "pip3 install -r requirements.txt",
4+
"installCommand": "uv pip install --system -r requirements.txt",
55
"framework": null
66
}

0 commit comments

Comments
 (0)