-
Notifications
You must be signed in to change notification settings - Fork 3k
chore: bump sgl-kernel v0.2.6 #8165
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build" | |
|
||
[project] | ||
name = "sgl-kernel" | ||
version = "0.2.5" | ||
version = "0.2.6" | ||
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. |
||
description = "Kernel Library for SGLang" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ build-backend = "scikit_build_core.build" | |
|
||
[project] | ||
name = "sgl-kernel" | ||
version = "0.2.5" | ||
version = "0.2.6" | ||
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. |
||
description = "Kernel Library for SGLang" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "sgl-kernel" | ||
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. To improve maintainability, avoid hardcoding the version. Use a dynamic version by reading it from |
||
version = "0.2.5" | ||
version = "0.2.6" | ||
description = "Kernel Library for SGLang" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.2.5" | ||
__version__ = "0.2.6" |
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.
To improve maintainability, avoid hardcoding the version number. Extract the version from
sgl-kernel/python/sgl_kernel/version.py
to ensure the Docker build uses the correct version.