build: tag armv6 wheels with tags accepted by PyPI

See
<https://github.com/pypi/warehouse/blob/main/warehouse/forklift/legacy.py>
for the tag checking code.

linux_armv6l and linux_armv7l are accepted,
but {many,musl}linux_*_armv6l are not.
This commit is contained in:
link2xt
2024-02-20 18:10:52 +00:00
parent 89e43c6678
commit cfa13f0669

View File

@@ -157,12 +157,12 @@ def main():
build_wheel(
version,
"dist/deltachat-rpc-server-armv7l-linux",
"py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l",
"py3-none-linux_armv7l.manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l",
)
build_wheel(
version,
"dist/deltachat-rpc-server-armv6l-linux",
"py3-none-manylinux_2_17_armv6l.manylinux2014_armv6l.musllinux_1_1_armv6l",
"py3-none-linux_armv6l",
)
build_wheel(
version,