diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index a33d025affc7..a7e9b430162d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -2,8 +2,8 @@ name: Wheel Builds on: push: - tags: - - '*' + branches: ['retrigger-ci'] + jobs: build_wheels: name: Build wheels diff --git a/pyproject.toml b/pyproject.toml index b1f7b039e407..4eb62677c692 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -156,14 +156,14 @@ environment = 'RUSTUP_TOOLCHAIN="stable"' [tool.cibuildwheel.linux] before-all = "yum install -y wget && {package}/tools/install_rust.sh" environment = 'PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI="true" RUSTUP_TOOLCHAIN="stable"' -repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel} && pipx run abi3audit --strict --report {wheel}" +repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel} && pip install 'abi3audit==0.0.12' && abi3audit --strict --report {wheel}" [tool.cibuildwheel.macos] environment = "MACOSX_DEPLOYMENT_TARGET=10.12" -repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel} && pipx run abi3audit --strict --report {wheel}" +repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel} && pip install 'abi3audit==0.0.12' && abi3audit --strict --report {wheel}" [tool.cibuildwheel.windows] -repair-wheel-command = "cp {wheel} {dest_dir}/. && pipx run abi3audit --strict --report {wheel}" +repair-wheel-command = "cp {wheel} {dest_dir}/. && pip install 'abi3audit==0.0.12' && abi3audit --strict --report {wheel}" [tool.ruff] select = [