Skip to content

Commit 48e8d16

Browse files
committed
upd
1 parent 63fa200 commit 48e8d16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release_wheel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
matrix:
2828
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2929
cuda: ["11.8", "12.1", "12.4"]
30-
torch: ["2.2", "2.3", "2.4"]
30+
torch: ["2.3", "2.4", "2.5"]
3131
exclude: # for cuda 12.4, we only support torch 2.4+
3232
- cuda: "12.4"
3333
torch: "2.2"

scripts/update_whl_index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
with open(path, "rb") as f:
77
sha256 = hashlib.sha256(f.read()).hexdigest()
88
ver, cu, torch = re.findall(
9-
r"flashinfer-([0-9.]+)\+cu(\d+)torch([0-9.]+)-", path.name
9+
r"flashinfer-([0-9.]+(?:\.post[0-9]+)?)\+cu(\d+)torch([0-9.]+)-", path.name
1010
)[0]
1111
index_dir = pathlib.Path(f"flashinfer-whl/cu{cu}/torch{torch}/flashinfer")
1212
index_dir.mkdir(exist_ok=True)

0 commit comments

Comments
 (0)