From 5f88c696eabc341421b0564a75f6b8862716654d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Sun, 16 Oct 2022 11:30:25 +0200 Subject: [PATCH] Add missing originale value of use poetry --- c2cciutils/publish.py | 1 + 1 file changed, 1 insertion(+) diff --git a/c2cciutils/publish.py b/c2cciutils/publish.py index d43c74c7f..07712035f 100644 --- a/c2cciutils/publish.py +++ b/c2cciutils/publish.py @@ -289,6 +289,7 @@ def pip( os.mkdir(dist) cmd = ["pip", "wheel", "--no-deps", "--wheel-dir=dist", "."] if os.path.exists(os.path.join(cwd, "pyproject.toml")): + use_poetry = False if "build_command" not in package: with open(os.path.join(cwd, "pyproject.toml"), encoding="utf-8") as project_file: pyproject = tomlkit.load(project_file)