Unverified Commit 28400714 authored by Neelay Shah's avatar Neelay Shah Committed by GitHub
Browse files

chore: updating to use pinned precompiled version (#2489)

parent 0376e72f
......@@ -147,10 +147,19 @@ if [ "$ARCH" = "arm64" ]; then
fi
else
echo "Installing vllm for AMD64 architecture"
echo "Attempting to install pinned OpenAI version..."
if ! uv pip install openai==1.99.9; then
echo "Pinned versions failed"
exit 1
fi
export VLLM_PRECOMPILED_WHEEL_LOCATION=https://vllm-wheels.s3.us-west-2.amazonaws.com/${VLLM_REF}/vllm-1.0.0.dev-cp38-abi3-manylinux1_x86_64.whl
if [ "$EDITABLE" = "true" ]; then
VLLM_USE_PRECOMPILED=1 uv pip install -e . --torch-backend=$TORCH_BACKEND
uv pip install -e . --torch-backend=$TORCH_BACKEND
else
VLLM_USE_PRECOMPILED=1 uv pip install . --torch-backend=$TORCH_BACKEND
uv pip install . --torch-backend=$TORCH_BACKEND
fi
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment