release 0.4.1

This commit is contained in:
PanQiWei 2023-08-13 16:35:59 +08:00
parent 34b4ba451c
commit 893fc5d7a3
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
__version__ = "0.4.0"
__version__ = "0.4.1"
from .modeling import BaseQuantizeConfig
from .modeling import AutoGPTQForCausalLM
from .utils.peft_utils import get_gptq_peft_model

View file

@ -5,7 +5,7 @@ from setuptools import setup, find_packages
common_setup_kwargs = {
"version": "0.4.0",
"version": "0.4.1",
"name": "auto_gptq",
"author": "PanQiWei",
"description": "An easy-to-use LLMs quantization package with user-friendly apis, based on GPTQ algorithm.",