Skip to content

Commit

Permalink
FIx: Don't try to build i686 Linux builds
Browse files Browse the repository at this point in the history
The latest manylinux image doesn't support it I don't think
  • Loading branch information
mcb2003 committed Feb 5, 2024
1 parent e872bec commit 1de3ded
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ cmake.build-type = "Release"
skip = ["pp3*-*", "*_s390x", "*-macosx_{x86_64,arm64}"]
# Use a more up-to-date manylinux image with a pipewire-devel package
manylinux-x86_64-image = "manylinux_2_28"
manylinux-i686-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"
manylinux-ppc64le-image = "manylinux_2_28"
# Use a more up-to-date musllinux image
Expand All @@ -65,7 +64,7 @@ archs = ["AMD64", "x86", "ARM64"]
archs = ["universal2"]

[tool.cibuildwheel.linux]
archs = ["x86_64", "i686", "aarch64", "ppc64le"]
archs = ["x86_64", "aarch64", "ppc64le"]

# OpenAL Soft needs the sound system headers at compile time, but dynamically
# loads the libraries at runtime, so it won't error on systems where these
Expand Down

0 comments on commit 1de3ded

Please sign in to comment.