Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Qiao <[email protected]>
  • Loading branch information
ruisearch42 committed Dec 11, 2024
1 parent eb8ae49 commit 5e89316
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements-test.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ einops # required for MPT, qwen-vl and Mamba
httpx
librosa # required for audio tests
peft
ray[adag]==2.39.0
ray[adag]==2.40.0
sentence-transformers # required for embedding tests
soundfile # required for audio tests
timm # required for internvl test
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ pyyaml==6.0.2
# ray
# timm
# transformers
ray[adag]==2.35.0
ray[adag]==2.40.0
# via -r requirements-test.in
redis==5.2.0
# via tensorizer
Expand Down
2 changes: 1 addition & 1 deletion vllm/executor/ray_gpu_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def _check_ray_adag_installation(self):
import pkg_resources
from packaging import version

required_version = version.parse("2.39")
required_version = version.parse("2.40")
current_version = version.parse(
pkg_resources.get_distribution("ray").version)
if current_version < required_version:
Expand Down

0 comments on commit 5e89316

Please sign in to comment.