-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
[Build] Add Benchmark dependencies to requirements/common.txt #19145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,3 +48,5 @@ opentelemetry-sdk>=1.26.0 # vllm.tracing | |
opentelemetry-api>=1.26.0 # vllm.tracing | ||
opentelemetry-exporter-otlp>=1.26.0 # vllm.tracing | ||
opentelemetry-semantic-conventions-ai>=0.4.1 # vllm.tracing | ||
pandas # needed for benchmarks module | ||
datasets # needed for benchmarks module | ||
Comment on lines
+51
to
+52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given that Could these be moved to an optional dependency group (e.g., defined in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But they are imported in CLI on critical path rn. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency with other packages in this file (e.g.,
opentelemetry-sdk>=1.26.0
,transformers >= 4.51.1
) and to ensure reproducible builds and prevent unexpected breakages from upstream changes, would it be better to pin versions forpandas
anddatasets
?For example, you could specify the versions you tested with (e.g.,
pandas==X.Y.Z
) or a minimum compatible version (e.g.,pandas>=X.Y.Z
). This helps maintain stability over time.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
both are relatively stable and very widely used thus I prefer not to pin it to avoid conflicts.