Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

bump up main to 0.2.0 #163

Merged
merged 3 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"accelerate>=0.20.3",
"pynvml==11.5.3",
"compressed-tensors"
if version_info.is_release
if version_info.build_type == "release"
else "compressed-tensors-nightly",
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion src/llmcompressor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from typing import Optional, Tuple

# Define the base version and build type
version_base = "0.1.0"
version_base = "0.2.0"
build_type = "dev" # can be 'release', 'nightly', 'dev', or 'dev' with a dev number


Expand Down
Loading