From cfa13f0669ec61e1049ce4e4d85a8c4e31653baf Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 20 Feb 2024 18:10:52 +0000 Subject: [PATCH] build: tag armv6 wheels with tags accepted by PyPI See for the tag checking code. linux_armv6l and linux_armv7l are accepted, but {many,musl}linux_*_armv6l are not. --- scripts/wheel-rpc-server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/wheel-rpc-server.py b/scripts/wheel-rpc-server.py index 42ea46202..43d3cfbad 100755 --- a/scripts/wheel-rpc-server.py +++ b/scripts/wheel-rpc-server.py @@ -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,