Skip to content

Commit

Permalink
fix version__ (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
wejoncy authored Nov 18, 2024
1 parent c5d86da commit 27b70af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "vptq"
version = "0.0.3"
version = "0.0.4"
authors = [
{ name="Yang Wang", email="wyatuestc@gmai.com" },
{ name="Jicheng Wen", email="wejoincy@gmail.com"},
Expand Down
5 changes: 4 additions & 1 deletion vptq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
# Licensed under the MIT License.
# --------------------------------------------------------------------------

__version__ = "0.0.4"
import importlib.metadata

from vptq.layers import AutoModelForCausalLM, VQuantLinear

__version__ = importlib.metadata.version("vptq")

__all__ = ["AutoModelForCausalLM", "VQuantLinear"]

0 comments on commit 27b70af

Please sign in to comment.