From 13925798d7eec2c01c4fd16de6ba3e4451a6e859 Mon Sep 17 00:00:00 2001 From: Erik De Smedt Date: Fri, 29 Mar 2024 10:06:49 +0100 Subject: [PATCH] `gl-testing`: Improve `pyproject.toml`-file Adding `gprcio-tools` as a dependency ensures `poetry install` works. Adding `cln-version-manager` as a dev-dependency ensures `poetry install` works and that we use an editable install --- libs/gl-testing/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/gl-testing/pyproject.toml b/libs/gl-testing/pyproject.toml index 1c6a6f0cf..b8123e3a7 100644 --- a/libs/gl-testing/pyproject.toml +++ b/libs/gl-testing/pyproject.toml @@ -42,6 +42,8 @@ cln-version-manager = "^0.1.0" [tool.poetry.group.dev.dependencies] mypy = "^1" typed-ast = "^1.5.4" +cln-version-manager = { path="../cln-version-manager", develop=true } +grpcio-tools = "^1.62.1" [build-system] requires = ["poetry-core>=1.0.0"]