py: Update dependencies and relax constraints

We were being very restrictive when describing the dependencies, so let's
relax them a bit.
This commit is contained in:
Christian Decker
2023-06-16 13:46:33 +02:00
committed by Rusty Russell
parent ea7d428579
commit 9f1e1ada2a
5 changed files with 255 additions and 309 deletions

View File

@@ -7,12 +7,12 @@ authors = ["Christian Decker <cdecker@blockstream.com>"]
[tool.poetry.dependencies]
# Build dependencies belong here
python = "^3.7"
pyln-client = { path = "./contrib/pyln-client", develop = true }
pyln-proto = { path = "./contrib/pyln-proto", develop = true }
pyln-client = { path = "contrib/pyln-client", develop = true }
pyln-proto = { path = "contrib/pyln-proto", develop = true }
Mako = "^1.1.6"
websocket-client = "^1.2.3"
grpcio-tools = "1.54.0"
grpcio = "1.54.0"
grpcio-tools = "^1"
grpcio = "^1"
cryptography = "^41.0.1"
[tool.poetry.dev-dependencies]