Bump vllm from 0.7.2 to 0.23.0 in the pip group across 1 directory#693
Open
dependabot[bot] wants to merge 1 commit into
Open
Bump vllm from 0.7.2 to 0.23.0 in the pip group across 1 directory#693dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps the pip group with 1 update in the / directory: [vllm](https://github.com/vllm-project/vllm). Updates `vllm` from 0.7.2 to 0.23.0 - [Release notes](https://github.com/vllm-project/vllm/releases) - [Changelog](https://github.com/vllm-project/vllm/blob/main/RELEASE.md) - [Commits](vllm-project/vllm@v0.7.2...v0.23.0) --- updated-dependencies: - dependency-name: vllm dependency-version: 0.23.0 dependency-type: direct:development dependency-group: pip ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit f483987. Configure here.
| test = ["pytest~=8.4.0"] | ||
| evolve = ["ray", "cma", "lm_eval", "wandb"] | ||
| vllm = ["vllm==0.7.2", "lm_eval[vllm]"] | ||
| vllm = ["vllm==0.23.0", "lm_eval[vllm]"] |
There was a problem hiding this comment.
vllm pin breaks in-memory evolve
High Severity
Pinning vllm==0.23.0 moves installs to the V1-only engine, while InMemoryMergeEvaluator still unwraps the legacy llm_engine layout (model_executor / driver_worker and model_runner.model) to hot-swap merged weights. With --vllm and in-memory scheduling, evaluation can fail with Unknown LLM engine type or broken weight updates.
Reviewed by Cursor Bugbot for commit f483987. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Bumps the pip group with 1 update in the / directory: vllm.
Updates
vllmfrom 0.7.2 to 0.23.0Release notes
Sourced from vllm's releases.
... (truncated)
Commits
0fc695f[Bugfix][Frontend] Cap fastapi < 0.137 to avoid prometheus-fastapi-instrument...91df0fa[Bugfix][CPU] Don't build triton-cpu on arm64 release image (#45401)78743ab[Docker] Fix CUTLASS DSL cu13 install order in Dockerfile (#45204)b2d7294[ROCm][Bugfix] Make intermediate_pad TP-aware in rocm_aiter_fused_experts (#4...741ba42[Bugfix] [DSV4] [ROCm] Pin apache-tvm-ffi version to0.1.10(#45169)ac94893[ROCm][MLA][Bugfix] Reserve FP8 prefill workspace before lock for Kimi-K2.5 (...967c5c3[ROCm][CI] Stage C mirrors (#42793)54c660c[XPU][Minor] format moe kernel name and add in kernel list (#44771)8fb0274[MM][CG] Simplify ViT CUDA graph interfaces (#44484)eebce65[XPU]feat: add DeepSeek-V4 XPU attention decode path (#42953)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.
Note
Medium Risk
Large jump in an optional inference stack used by
mergekit-evolveand lm-eval’s vLLM backend; may break installs or runtime behavior for users who opt into thevllmextra without affecting core merging.Overview
Updates the optional
vllminstall extra inpyproject.tomlfromvllm==0.7.2tovllm==0.23.0, still paired withlm_eval[vllm].This only affects environments installed with
pip install .[vllm](or[evolve,vllm]); default installs and CI (--no-extra vllm) are unchanged.Reviewed by Cursor Bugbot for commit f483987. Bugbot is set up for automated code reviews on this repo. Configure here.