Skip to content

Commit 5d3415f

Browse files
committed
test final version
1 parent 65f3841 commit 5d3415f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ ignore = [
136136
[tool.cibuildwheel]
137137
archs = ["auto64"]
138138
# wait for tvm fix
139-
build = "cp312-*"
139+
build = "cp38-*"
140140

141141
[tool.cibuildwheel.macos]
142142
archs = ["arm64"]
@@ -148,9 +148,8 @@ manylinux-aarch64-image = "manylinux_2_28"
148148
skip = "*-musllinux*"
149149
environment-pass = ["CUDA_VERSION"]
150150
repair-wheel-command = [
151-
"""
152-
auditwheel repair --exclude libcuda.so.1 --exclude /usr/local/cuda\\* -w {dest_dir} {wheel}""",
153-
# "pipx run abi3audit --strict --report {wheel}",
151+
"auditwheel repair --exclude libcuda.so.1 --exclude /usr/local/cuda\\* -w {dest_dir} {wheel}",
152+
"pipx run abi3audit --strict --report {wheel}",
154153
]
155154

156155
# Install CUDA runtime and stub driver library
@@ -171,7 +170,8 @@ case "$(uname -m)" in
171170
esac
172171
173172
# Assume CUDA_VERSION=xx.y
174-
v=${CUDA_VERSION:0:4}
173+
v=${CUDA_VERSION:-12.4}
174+
v=${v:0:4}
175175
v=${v/./-}
176176
yum install -y cuda-minimal-build-${v} cuda-driver-devel-${v} cuda-nvrtc-devel-${v}
177177
"""

0 commit comments

Comments
 (0)