From 7145db5a0a317d60034cbf75b1cc6d9d3122571b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Wed, 2 Oct 2024 18:15:33 +0200 Subject: [PATCH] Don't prepend current directory when building --- src/oca_github_bot/build_wheels.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/oca_github_bot/build_wheels.py b/src/oca_github_bot/build_wheels.py index 39cd8106..d09c6e3f 100644 --- a/src/oca_github_bot/build_wheels.py +++ b/src/oca_github_bot/build_wheels.py @@ -51,6 +51,7 @@ def build_wheel(self, project_dir: Path, dist_dir: str) -> None: check_call( [ self.env_python, + "-P", "-m", "build", "--wheel",