File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ ignore = [
136136[tool .cibuildwheel ]
137137archs = [" auto64" ]
138138# wait for tvm fix
139- build = " cp312 -*"
139+ build = " cp38 -*"
140140
141141[tool .cibuildwheel .macos ]
142142archs = [" arm64" ]
@@ -148,9 +148,8 @@ manylinux-aarch64-image = "manylinux_2_28"
148148skip = " *-musllinux*"
149149environment-pass = [" CUDA_VERSION" ]
150150repair-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
171170esac
172171
173172# Assume CUDA_VERSION=xx.y
174- v=${CUDA_VERSION:0:4}
173+ v=${CUDA_VERSION:-12.4}
174+ v=${v:0:4}
175175v=${v/./-}
176176yum install -y cuda-minimal-build-${v} cuda-driver-devel-${v} cuda-nvrtc-devel-${v}
177177"""
You can’t perform that action at this time.
0 commit comments