2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/14259.misc b/changelog.d/14259.misc
new file mode 100644
index 0000000000..7425498964
--- /dev/null
+++ b/changelog.d/14259.misc
@@ -0,0 +1 @@
+Only build aarch64 wheels for cpython manylinux.
diff --git a/pyproject.toml b/pyproject.toml
index 78011be490..ec0fbd1eb9 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -318,7 +318,7 @@ build-backend = "poetry.core.masonry.api"
[tool.cibuildwheel]
# Skip unsupported platforms (by us or by Rust).
-skip = "cp36* *-musllinux_i686"
+skip = "cp36* *-musllinux_i686 pp*aarch64 *-musllinux_aarch64"
# We need a rust compiler
before-all = "curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y --profile minimal"
|