diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-02 21:20:50 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-05 13:36:27 +0100 |
commit | 03e189d1a1d34353c9385ab499e158b57c792024 (patch) | |
tree | b3968082dbe82d6594a19ea49275fe59eea3676b /scripts/gen_vimdoc.py | |
parent | 9d1deed6c83de70d43ffcb28f60f438849d76e5c (diff) | |
download | rneovim-03e189d1a1d34353c9385ab499e158b57c792024.tar.gz rneovim-03e189d1a1d34353c9385ab499e158b57c792024.tar.bz2 rneovim-03e189d1a1d34353c9385ab499e158b57c792024.zip |
chore(gen_vimdoc): correct minimum python version
Diffstat (limited to 'scripts/gen_vimdoc.py')
-rwxr-xr-x | scripts/gen_vimdoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_vimdoc.py b/scripts/gen_vimdoc.py index 61fa5971a4..36768953f9 100755 --- a/scripts/gen_vimdoc.py +++ b/scripts/gen_vimdoc.py @@ -52,7 +52,7 @@ import logging from xml.dom import minidom -MIN_PYTHON_VERSION = (3, 5) +MIN_PYTHON_VERSION = (3, 6) if sys.version_info < MIN_PYTHON_VERSION: print("requires Python {}.{}+".format(*MIN_PYTHON_VERSION)) |