[Minor] Fix warning on Ray dependencies (#2630)

This commit is contained in:
Woosuk Kwon 2024-01-27 15:43:40 -08:00 committed by GitHub
parent 380170038e
commit 5f036d2bcc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,7 +43,7 @@ try:
except ImportError as e:
logger.warning(f"Failed to import Ray with {e!r}. "
"For distributed inference, please install Ray with "
"`pip install ray pandas pyarrow`.")
"`pip install ray`.")
ray = None
RayWorkerVllm = None