From db05adf4b3c6d72721eaf152aa41c9d35dcecc3c Mon Sep 17 00:00:00 2001 From: HDCharles <39544797+HDCharles@users.noreply.github.com> Date: Wed, 27 Nov 2024 00:31:36 -0500 Subject: [PATCH] testing build linux wheels https://github.com/pytorch/test-infra/pull/5986 and https://github.com/pytorch/pytorch/pull/141565 changed back to manylinux 2014 for versions of cuda/cpu, testing that this fixes the issue since hte actual error seems to be occuring in the Build the wheel step before hte post script gets run: https://github.com/pytorch/ao/actions/runs/12041427944/job/33573281510 --- packaging/post_build_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/post_build_script.sh b/packaging/post_build_script.sh index e6cfc8adfe..70e8d83392 100644 --- a/packaging/post_build_script.sh +++ b/packaging/post_build_script.sh @@ -13,7 +13,7 @@ if [[ "$CU_VERSION" == cu* ]]; then WHEEL_NAME=$(ls dist/) pushd dist - manylinux_plat=manylinux_2_28_x86_64 + manylinux_plat=manylinux2014_x86_64 auditwheel repair --plat "$manylinux_plat" -w . \ --exclude libtorch.so \ --exclude libtorch_python.so \