From d1f83c75934e9b65d7be2c5c37c2580236d613a3 Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Fri, 19 Apr 2024 16:14:33 +0200 Subject: [PATCH] poetry: add pyln-grpc-proto dependency Changelog-None --- poetry.lock | 18 ++++++++++-------- pyproject.toml | 1 + 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/poetry.lock b/poetry.lock index c5d67f9bbf50..304f9991a69e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. [[package]] name = "aniso8601" @@ -1702,19 +1702,21 @@ url = "contrib/pyln-client" [[package]] name = "pyln-grpc-proto" -version = "0.1.1" +version = "0.1.2" description = "The compiled GRPC proto for CLN" optional = false -python-versions = ">=3.7,<4.0" -files = [ - {file = "pyln_grpc_proto-0.1.1-py3-none-any.whl", hash = "sha256:7a34d3ee9ce62abb382fc0e77d12c1c9ffdc50f13409670a7a757d01f10ad118"}, - {file = "pyln_grpc_proto-0.1.1.tar.gz", hash = "sha256:544c1c4a0e80b9ac57ce9d0daf27de8337814cf45e98e2f730d01e3095be8829"}, -] +python-versions = "^3.8" +files = [] +develop = true [package.dependencies] grpcio = "*" protobuf3 = "*" +[package.source] +type = "directory" +url = "contrib/pyln-grpc-proto" + [[package]] name = "pyln-proto" version = "24.02" @@ -2398,4 +2400,4 @@ testing = ["coverage (>=5.0.3)", "zope.event", "zope.testing"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "bf58efb727080fabf035cf9dac2d76dd1f9a77f5ed56d791e6d5b8d7533dd7af" +content-hash = "047f3455bfbc5ef70bf08134d205cae4b10dece2df2b737c65655449cc2f8fcd" diff --git a/pyproject.toml b/pyproject.toml index 9b0bc8b8751a..2ed0bbdffdcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ authors = ["Christian Decker "] python = "^3.8" pyln-client = { path = "contrib/pyln-client", develop = true } pyln-proto = { path = "contrib/pyln-proto", develop = true } +pyln-grpc-proto = { path = "contrib/pyln-grpc-proto", develop = true } clnrest = { path = "plugins/clnrest", develop = true } wss-proxy = { path = "plugins/wss-proxy", develop = true } Mako = "^1.1.6"