diff --git a/awq/__init__.py b/awq/__init__.py index a65a5304..af5908ee 100644 --- a/awq/__init__.py +++ b/awq/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.2.7" +__version__ = "0.2.7.post1" from awq.models.auto import AutoAWQForCausalLM diff --git a/scripts/download_wheels.sh b/scripts/download_wheels.sh index c250faf6..2fee222f 100644 --- a/scripts/download_wheels.sh +++ b/scripts/download_wheels.sh @@ -1,7 +1,7 @@ #!/bin/bash # Set variables -AWQ_VERSION="0.2.7" +AWQ_VERSION="0.2.7.post1" RELEASE_URL="https://api.github.com/repos/casper-hansen/AutoAWQ/releases/tags/v${AWQ_VERSION}" # Create a directory to download the wheels diff --git a/setup.py b/setup.py index 687c6134..2d89e3ea 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from pathlib import Path from setuptools import setup, find_packages -AUTOAWQ_VERSION = "0.2.7" +AUTOAWQ_VERSION = "0.2.7.post1" INSTALL_KERNELS = os.getenv("INSTALL_KERNELS", "0") == "1" IS_CPU_ONLY = not torch.backends.mps.is_available() and not torch.cuda.is_available() TORCH_VERSION = str(os.getenv("TORCH_VERSION", None) or torch.__version__).split('+', maxsplit=1)[0]