Skip to content

Conversation

@DarkLight1337
Copy link
Member

@DarkLight1337 DarkLight1337 commented Nov 28, 2025

This reverts commit 35657bc.

Purpose

That PR is causing https://buildkite.com/vllm/ci/builds/40985/steps/canvas?jid=019ac81a-0a89-4dca-96dc-c331d4c7a4cf#019ac81a-0a89-4dca-96dc-c331d4c7a4cf to fail

Separately, fix a pre-commit error on main caused by #29594

Test Plan

Test Result


Essential Elements of an Effective PR Description Checklist
  • The purpose of the PR, such as "Fix some issue (link existing issues this PR will resolve)".
  • The test plan, such as providing test command.
  • The test results, such as pasting the results comparison before and after, or e2e results
  • (Optional) The necessary documentation update, such as updating supported_models.md and examples for a new model.
  • (Optional) Release notes update. If your change is user facing, please update the release notes draft in the Google Doc.

@DarkLight1337 DarkLight1337 added the ready ONLY add when PR is ready to merge/full CI is needed label Nov 28, 2025
@mergify mergify bot added the ci/build label Nov 28, 2025
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request reverts the update of CPU PyTorch to version 2.9.0, addressing a CI failure. The changes involve downgrading torch, torchaudio, and torchvision in the relevant requirement files and the CPU Dockerfile. The changes look correct and align with the goal of the revert. I have provided one suggestion in docker/Dockerfile.cpu to make the script more robust and concise.

Comment on lines +135 to +137
sed -i 's/^torch==.*/torch==2.8.0/g' requirements/cpu-test.in && \
sed -i 's/torchaudio.*/torchaudio/g' requirements/cpu-test.in && \
sed -i 's/torchvision.*/torchvision/g' requirements/cpu-test.in && \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The sed commands for torchaudio and torchvision are not anchored to the start of the line, making them potentially fragile. They could unintentionally modify other parts of the file, such as comments.

For improved robustness and conciseness, you can combine all three sed operations into a single command. This ensures each substitution is anchored to the beginning of the line (^) and is more specific about what it replaces.

    sed -i 's/^torch==.*/torch==2.8.0/;s/^torchaudio==.*/torchaudio/;s/^torchvision==.*/torchvision/' requirements/cpu-test.in && \

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
@mergify mergify bot added the qwen Related to Qwen models label Nov 28, 2025
@DarkLight1337
Copy link
Member Author

The tests passed

@vllm-bot vllm-bot merged commit b34e877 into vllm-project:main Nov 28, 2025
11 of 19 checks passed
@DarkLight1337 DarkLight1337 deleted the revert-29589 branch November 28, 2025 06:43
kitaekatt pushed a commit to kitaekatt/vllm that referenced this pull request Dec 1, 2025
amd-hhashemi pushed a commit to amd-hhashemi/vllm that referenced this pull request Dec 2, 2025
…project#29647)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
Signed-off-by: Hashem Hashemi <hashem.hashemi@amd.com>
charlotte12l pushed a commit to charlotte12l/vllm that referenced this pull request Dec 5, 2025
…project#29647)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
Signed-off-by: Xingyu Liu <charlotteliu12x@gmail.com>
Zhathw pushed a commit to Zhathw/vllm that referenced this pull request Dec 6, 2025
charlotte12l pushed a commit to charlotte12l/vllm that referenced this pull request Dec 9, 2025
Somoku pushed a commit to Somoku/vllm that referenced this pull request Dec 15, 2025
…project#29647)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
Signed-off-by: Somoku <linsh0@protonmail.com>
dsuhinin pushed a commit to dsuhinin/vllm that referenced this pull request Jan 21, 2026
…project#29647)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
Signed-off-by: dsuhinin <suhinin.dmitriy@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ci/build qwen Related to Qwen models ready ONLY add when PR is ready to merge/full CI is needed

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants