From 2068504d5ec1cae4ace655e8f957d340b3e72c1a Mon Sep 17 00:00:00 2001 From: yut23 Date: Tue, 21 May 2024 16:46:21 -0400 Subject: [PATCH] BLD: fix segfault with manylinux2014 The cibuildwheel docs say that manylinux2014 supports all C++ standards up to C++17 (https://cibuildwheel.pypa.io/en/stable/cpp_standards/). Fixes: yt-project/yt#4910 --- .github/workflows/wheels.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index e61064f6bf..ed9a7e2585 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -42,9 +42,7 @@ jobs: CIBW_ARCHS_MACOS: auto MACOSX_DEPLOYMENT_TARGET: "10.9" # as of CIBW 2.9, this is the default value, pin it so it can't be bumped silently CIBW_ARCHS_WINDOWS: auto64 - CIBW_ENVIRONMENT: "LDFLAGS='-static-libstdc++'" CIBW_BUILD_VERBOSITY: 1 - CIBW_TEST_SKIP: "*-manylinux*" # https://github.com/yt-project/yt/issues/4910 CIBW_TEST_COMMAND: python -c "import yt" - uses: actions/upload-artifact@v4