File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -26,20 +26,20 @@ RUN pip install intel_extension_for_pytorch==2.5.0
26
26
27
27
WORKDIR /workspace
28
28
29
+ COPY requirements-build.txt requirements-build.txt
29
30
ARG PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu"
30
31
ENV PIP_EXTRA_INDEX_URL=${PIP_EXTRA_INDEX_URL}
31
32
RUN --mount=type=cache,target=/root/.cache/pip \
32
- --mount=type=bind,src=requirements-build.txt,target=requirements-build.txt \
33
33
pip install --upgrade pip && \
34
34
pip install -r requirements-build.txt
35
35
36
36
FROM cpu-test-1 AS build
37
37
38
38
WORKDIR /workspace/vllm
39
39
40
+ COPY requirements-common.txt requirements-common.txt
41
+ COPY requirements-cpu.txt requirements-cpu.txt
40
42
RUN --mount=type=cache,target=/root/.cache/pip \
41
- --mount=type=bind,src=requirements-common.txt,target=requirements-common.txt \
42
- --mount=type=bind,src=requirements-cpu.txt,target=requirements-cpu.txt \
43
43
pip install -v -r requirements-cpu.txt
44
44
45
45
COPY . .
Original file line number Diff line number Diff line change @@ -455,9 +455,13 @@ def get_gaudi_sw_version():
455
455
456
456
457
457
def get_vllm_version () -> str :
458
- version = get_version (
459
- write_to = "vllm/_version.py" , # TODO: move this to pyproject.toml
460
- )
458
+ # TODO: Revisit this temporary approach: https://github.com/vllm-project/vllm/issues/9182#issuecomment-2404860236
459
+ try :
460
+ version = get_version (
461
+ write_to = "vllm/_version.py" , # TODO: move this to pyproject.toml
462
+ )
463
+ except LookupError :
464
+ version = "0.0.0"
461
465
462
466
sep = "+" if "+" not in version else "." # dev versions might contain +
463
467
You can’t perform that action at this time.
0 commit comments