temporarily set the version of main branch to 0.5.0.dev0

This commit is contained in:
PanQiWei 2023-08-25 17:36:23 +08:00
parent 6bbf70373f
commit 604c96144f
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
__version__ = "0.4.1"
__version__ = "0.5.0.dev0"
from .modeling import BaseQuantizeConfig
from .modeling import AutoGPTQForCausalLM
from .utils.peft_utils import get_gptq_peft_model
from .utils.exllama_utils import exllama_set_max_input_length
from .utils.exllama_utils import exllama_set_max_input_length

View file

@ -9,7 +9,7 @@ os.environ["CC"] = "g++"
os.environ["CXX"] = "g++"
common_setup_kwargs = {
"version": "0.4.1",
"version": "0.5.0.dev0",
"name": "auto_gptq",
"author": "PanQiWei",
"description": "An easy-to-use LLMs quantization package with user-friendly apis, based on GPTQ algorithm.",