From 722dd6054d2052e1f5496ed0b76ce83efe74f67a Mon Sep 17 00:00:00 2001 From: Sorin Birchi Date: Mon, 1 Apr 2024 14:38:38 +0300 Subject: [PATCH] Update pyproject.toml deps Using python 3.12 will result into an error because distutils is no longer supported. Downgrading to python 3.10 will solve this issue. Signed-off-by: Sorin Birchi --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d0d6b62..5a36ba3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,12 +5,13 @@ authors = ["OpenCRS"] version = "0.1.0" [tool.poetry.dependencies] -python = "^3.12" +python = "^3.10" pycparser = "^2.21" pyelftools = "^0.28" docker = "^6.1.2" rich = "^12.5.1" click = "^8.1.3" +commons = {path = "../commons"} [tool.poetry.dev-dependencies] black = "^22.6.0"