From 97f1f4c454d388863e1acf7d87d4b3342364ce79 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Thu, 19 Mar 2026 19:49:46 -0400 Subject: [PATCH] fix wheel tag name --- hatch_rs/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_rs/plugin.py b/hatch_rs/plugin.py index a16cc22..a12e2e8 100644 --- a/hatch_rs/plugin.py +++ b/hatch_rs/plugin.py @@ -87,7 +87,7 @@ def initialize(self, version: str, build_data: dict[str, Any]) -> None: # else: # build_data["tag"] = f"cp{version_major}{version_minor}-cp{version_major}{version_minor}-{os_name}_{machine}" build_data["pure_python"] = False - machine = platform_machine() + machine = platform_machine().lower() version_major = version_info.major version_minor = version_info.minor