-
Notifications
You must be signed in to change notification settings - Fork 3k
chore: upgrade flashinfer v0.2.9rc2 #8406
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 |
---|---|---|
|
@@ -640,7 +640,7 @@ def _set_envs_and_config(server_args: ServerArgs): | |
if server_args.attention_backend == "flashinfer": | ||
assert_pkg_version( | ||
"flashinfer_python", | ||
"0.2.9rc1", | ||
"0.2.9rc2", | ||
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. This hardcoded version string is also defined in |
||
"Please uninstall the old version and " | ||
"reinstall the latest version by following the instructions " | ||
"at https://docs.flashinfer.ai/installation.html.", | ||
|
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.
The dependency lists for the
srt
andblackwell
extras appear to be identical. To improve maintainability and avoid having to update versions in multiple places, consider defining a common extra that bothsrt
andblackwell
can depend on.For example:
This would centralize the common dependencies, making future updates easier.