From da0b159323281b83ce7d99b61ae2db7fc4649c5c Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Mon, 16 Aug 2021 21:28:02 +0200 Subject: [PATCH] pylightning: fix requirements to work with pyln-client Without this, we cannot pip install pylightning and pyln-client in the same environment anymore, as it tries to pull in an incompatible version of pyln-client. Changelog-None --- contrib/pylightning/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pylightning/requirements.txt b/contrib/pylightning/requirements.txt index e5d9b8976..f30a5ad4c 100644 --- a/contrib/pylightning/requirements.txt +++ b/contrib/pylightning/requirements.txt @@ -1 +1 @@ -pyln-client ~= 0.9.3 +pyln-client >= 0.9.3