From cbd6a75b065e94a3e530dfdbb8f3973f0d954ec0 Mon Sep 17 00:00:00 2001 From: Casper Date: Fri, 6 Dec 2024 19:48:03 +0100 Subject: [PATCH] bump to 0.2.7.post3 (#674) --- awq/__init__.py | 2 +- scripts/download_wheels.sh | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/awq/__init__.py b/awq/__init__.py index fce7ed18..0397ef31 100644 --- a/awq/__init__.py +++ b/awq/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.2.7.post2" +__version__ = "0.2.7.post3" from awq.models.auto import AutoAWQForCausalLM diff --git a/scripts/download_wheels.sh b/scripts/download_wheels.sh index 65f35b28..d1bd9e08 100644 --- a/scripts/download_wheels.sh +++ b/scripts/download_wheels.sh @@ -1,7 +1,7 @@ #!/bin/bash # Set variables -AWQ_VERSION="0.2.7.post2" +AWQ_VERSION="0.2.7.post3" 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 58698bc2..14465ba6 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.post2" +AUTOAWQ_VERSION = "0.2.7.post3" TORCH_VERSION = str(os.getenv("TORCH_VERSION", None) or torch.__version__).split('+', maxsplit=1)[0] common_setup_kwargs = {