From 31791cb6a60cce7cebf606b46071d7080c6ce803 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sat, 4 Oct 2025 23:08:25 +0200 Subject: [PATCH] arch name fixed --- src/copapy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/copapy/__init__.py b/src/copapy/__init__.py index afac4db..c8031d3 100644 --- a/src/copapy/__init__.py +++ b/src/copapy/__init__.py @@ -15,7 +15,7 @@ def get_var_name(var: Any, scope: dict[str, Any] = globals()) -> list[str]: def get_local_arch() -> str: - arch_translation_table = {'ARM64': 'x86_64'} + arch_translation_table = {'AMD64': 'x86_64'} return arch_translation_table.get(platform.machine(), platform.machine())