From fba6063172ebb9b3b0858fbfd325626c9f3a2353 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Mon, 13 Mar 2023 16:02:40 -0400 Subject: [PATCH] Backport PR #51931: BLD: Try strip-all instead of strip-debug --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 51236159b1f74..5e5da840c2835 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -143,7 +143,7 @@ parentdir_prefix = "pandas-" [tool.cibuildwheel] skip = "cp36-* cp37-* pp37-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux*" build-verbosity = "3" -environment = { LDFLAGS="-Wl,--strip-debug" } +environment = { LDFLAGS="-Wl,--strip-all" } test-requires = "hypothesis>=6.34.2 pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asyncio>=0.17" test-command = "python {project}/ci/test_wheels.py"