From 5be7531c85f7e5c486a08a3041d786f210ffb036 Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Sat, 20 Sep 2025 21:08:07 +0530 Subject: [PATCH] fix plat-name --- pythonforandroid/recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipe.py b/pythonforandroid/recipe.py index 0ebe005d1..44aab013a 100644 --- a/pythonforandroid/recipe.py +++ b/pythonforandroid/recipe.py @@ -1222,7 +1222,7 @@ def get_recipe_env(self, arch, **kwargs): build_opts = join(build_dir, "build-opts.cfg") with open(build_opts, "w") as file: - file.write("[bdist_wheel]\nplat-name={}".format( + file.write("[bdist_wheel]\nplat_name={}".format( self.get_wheel_platform_tag(arch) )) file.close()