diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 80249a1eec98..a352025561be 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest #if: "startsWith(github.ref, 'refs/tags/')" container: - image: quay.io/pypa/musllinux_1_1_x86_64 + image: quay.io/pypa/manylinux2014_x86_64 env: RUSTFLAGS: "" # for some reason it has -D warnings by default steps: diff --git a/bindings/python/build.py b/bindings/python/build.py index 5f61bfeb1726..5c05a09171c4 100644 --- a/bindings/python/build.py +++ b/bindings/python/build.py @@ -98,7 +98,7 @@ def compile_target(target_name, target_settings, WHEELS_FOLDER, settings): os_name = platform.system().strip().lower() print(os_name) if os_name == "linux": - zig = "--compatibility manylinux_1_1" + zig = "--compatibility manylinux2014" env = { #"CXXFLAGS": "-stdlib=libc++", #"CFLAGS": "-stdlib=libc++"