Skip to content

Commit a2c69dd

Browse files
committed
remove need for manual git clone
1 parent 31136c4 commit a2c69dd

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,6 @@ ENV UV_COMPILE_BYTECODE=0
7272
# Copy only dependency-related files first
7373
COPY pyproject.toml uv.lock ./
7474

75-
# Install custom vllm for olmo3
76-
RUN git clone -b shanea/olmo3 https://github.com/2015aroras/vllm.git vllm_olmo3
77-
7875
# Install dependencies
7976
RUN --mount=type=cache,target=${UV_CACHE_DIR} \
8077
--mount=type=bind,source=uv.lock,target=uv.lock \

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencies = [
2424
"tensorboard>=2.18.0",
2525
"torch>=2.7.0,<2.8",
2626
"transformers @ git+https://github.com/2015aroras/transformers.git@shanea/olmo3",
27-
"vllm",
27+
"vllm @ git+https://github.com/2015aroras/vllm.git@shanea/olmo3",
2828
"wandb==0.18.1",
2929
"langdetect==1.0.9",
3030
"immutabledict==1.2.0",
@@ -53,7 +53,6 @@ vllm = { VLLM_USE_PRECOMPILED = "1" }
5353
torch = [
5454
{ index = "pytorch-cu128", marker = "platform_system != 'Darwin'"},
5555
]
56-
vllm = { path = "./vllm_olmo3", editable = true }
5756

5857
[[tool.uv.index]]
5958
name = "pytorch-cu128"

0 commit comments

Comments
 (0)