From fc26260d844ccacafecc4b1dc6af3d706915ba5f Mon Sep 17 00:00:00 2001 From: Icey <1790571317@qq.com> Date: Sat, 24 Jan 2026 17:11:55 +0800 Subject: [PATCH] [BugFix] buildwheel dependency install (#6212) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### What this PR does / why we need it? buildwheel dependency install, fixes https://github.com/vllm-project/vllm-ascend/actions/runs/21309549095 ### Does this PR introduce _any_ user-facing change? N/A ### How was this patch tested? CI passed with new added/existing test. - vLLM version: v0.14.0 - vLLM main: https://github.com/vllm-project/vllm/commit/d68209402ddab3f54a09bc1f4de9a9495a283b60 Signed-off-by: wxsIcey <1790571317@qq.com> --- .github/Dockerfile.buildwheel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/Dockerfile.buildwheel b/.github/Dockerfile.buildwheel index 1c06786b..5e757977 100644 --- a/.github/Dockerfile.buildwheel +++ b/.github/Dockerfile.buildwheel @@ -32,7 +32,7 @@ COPY . /workspace/vllm-ascend/ # Install req RUN python3 -m pip install -r vllm-ascend/requirements.txt --extra-index https://download.pytorch.org/whl/cpu/ && \ - python3 -m pip install twine + python3 -m pip install twine attrs psutil # Install vllm-ascend RUN source /usr/local/Ascend/ascend-toolkit/set_env.sh && \