From 04eed3f5958f5194a3a6c80c53fcf86fa9aff39e Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Fri, 11 Dec 2020 12:41:06 +0100 Subject: [PATCH] Introduce a Minimum Supported Python Version for Python plugins Fixes https://github.com/lightningd/plugins/issues/146 Signed-off-by: Antoine Poinsot --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 44707ca..acad466 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,9 @@ Running tests locally can be done like this: pytest YOUR_PLUGIN/YOUR_TEST.py ``` -### Additional dependencies +### Python plugins specifics + +#### Additional dependencies Additionally, some Python plugins come with a `requirements.txt` which can be used to install the plugin's dependencies using the `pip` tools: @@ -137,6 +139,12 @@ pip3 install -r requirements.txt Note: You might need to also specify the `--user` command line flag depending on your environment. +#### Minimum supported Python version + +The minimum supported version of Python for this repository is currently `3.6.x` (23 Dec 2016). +Python plugins users must ensure to have a version `>= 3.6`. +Python plugins developers must ensure their plugin to work with all Python versions `>= 3.6`. + ## More Plugins from the Community