Skip to content

Commit 947a839

Browse files
post release 1 (#650)
1 parent 8f71dc8 commit 947a839

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

awq/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.2.7"
1+
__version__ = "0.2.7.post1"
22
from awq.models.auto import AutoAWQForCausalLM

scripts/download_wheels.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Set variables
4-
AWQ_VERSION="0.2.7"
4+
AWQ_VERSION="0.2.7.post1"
55
RELEASE_URL="https://api.github.com/repos/casper-hansen/AutoAWQ/releases/tags/v${AWQ_VERSION}"
66

77
# Create a directory to download the wheels

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pathlib import Path
44
from setuptools import setup, find_packages
55

6-
AUTOAWQ_VERSION = "0.2.7"
6+
AUTOAWQ_VERSION = "0.2.7.post1"
77
INSTALL_KERNELS = os.getenv("INSTALL_KERNELS", "0") == "1"
88
IS_CPU_ONLY = not torch.backends.mps.is_available() and not torch.cuda.is_available()
99
TORCH_VERSION = str(os.getenv("TORCH_VERSION", None) or torch.__version__).split('+', maxsplit=1)[0]

0 commit comments

Comments
 (0)