Skip to content

Commit

Permalink
post release 1 (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
casper-hansen authored Nov 16, 2024
1 parent 8f71dc8 commit 947a839
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion awq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.2.7"
__version__ = "0.2.7.post1"
from awq.models.auto import AutoAWQForCausalLM
2 changes: 1 addition & 1 deletion scripts/download_wheels.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 947a839

Please sign in to comment.