From 3983b77702074e75cef63e2ce2226b3b39eb1ba5 Mon Sep 17 00:00:00 2001 From: Eugene Batalov Date: Fri, 22 Nov 2024 11:01:35 +0000 Subject: [PATCH] Run Poetry install before poetry build command in Makefile Building Python SDK project requires all Poetry dependencies to be installed first. Also adding install command ensures that all dependencies are updating during development if they are changes in pyproject.toml. Poetry install is exiting in a few ms if everything is installed already so this doesn't add extra delay. --- python-sdk/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/python-sdk/Makefile b/python-sdk/Makefile index b17c15c50..647915097 100644 --- a/python-sdk/Makefile +++ b/python-sdk/Makefile @@ -2,6 +2,7 @@ all: build build: @rm -rf dist + @poetry install @poetry build fmt: