From 3ad4847cc1d28e967ea1892dccf4b2f1f5ae9430 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Thu, 21 Nov 2024 16:48:30 +0100 Subject: [PATCH] testing: Pin pyln-testing and pyln-client to 24.02 24.08 broke the plugin handling in CLN by no longer passing the description along. We'll need to unpin them again once we have switched to CLN 24.08 for testing. --- libs/gl-testing/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/gl-testing/pyproject.toml b/libs/gl-testing/pyproject.toml index 1e97b5b6..b0df7cc1 100644 --- a/libs/gl-testing/pyproject.toml +++ b/libs/gl-testing/pyproject.toml @@ -12,7 +12,8 @@ dependencies = [ "grpcio>=1.66.0", "httpx>=0.27.2", "purerpc>=0.8.0", - "pyln-testing==24.8.1", + "pyln-client==24.2", + "pyln-testing==24.2", "pytest-timeout>=2.3.1", "pytest-xdist>=3.6.1", "rich>=13.9.3",