From 1ffcaaa2334326f8046fdd367051a0b55896f598 Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Thu, 28 Oct 2021 11:26:45 +0200 Subject: [PATCH] Document minimum python version --- README.md | 2 ++ setup.py | 1 + 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 23ddb42..3876865 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ Python 3 check local import for flake8 pip install flake8-local-import ``` +**Note**: This plugin requires Python 3.8 or above. + # Configuration You will want to set the `app-import-names` option to a comma separated diff --git a/setup.py b/setup.py index cf42960..de267e3 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ "flake8_local_import", ], install_requires=requires, + python_requires='>=3.8', entry_points={ flake8_entry_point: [ 'LI = flake8_local_import:LocalImportPlugin',