From 5609865631f837d51d6b89a9a5e3af9f1d8e85bb Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Wed, 28 Dec 2022 14:27:52 +0100 Subject: [PATCH] ci: remove Flask as its dep of testing anyway Also specify a more recent minimal version of MarkupSafe and itsdangerous --- .ci/test.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.ci/test.py b/.ci/test.py index 2dbd74f..69db2f3 100644 --- a/.ci/test.py +++ b/.ci/test.py @@ -174,9 +174,8 @@ def install_pyln_testing(pip_path): pip_path, 'install', '-U', *pip_opts, cln_path + "/contrib/pyln-client", cln_path + "/contrib/pyln-testing", - "Flask==1.1.0", - "MarkupSafe==2.0.1", - 'itsdangerous==1.1.0' + "MarkupSafe>=2.0", + 'itsdangerous>=2.0' ], stderr=subprocess.STDOUT, )