From 0a64d651f9d513482d4fbe57468cacea8470b22c Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Fri, 10 May 2024 13:40:14 -0400 Subject: [PATCH] fix(build): pip install poetry (#667) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 64d683f4e..da6bcd6c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -146,4 +146,4 @@ upload_to_PyPI = false upload_to_release = true upload_to_repository = false repository_url = "https://upload.pypi.org/legacy/" -build_command = "poetry env use python3.10 && poetry build" +build_command = "pip install poetry && poetry env use python3.10 && poetry build"