Merge pull request #17274 from dundargoc/chore/correct-minimum-python-version

chore(gen_vimdoc): correct minimum python version
This commit is contained in:
James McCoy 2022-02-05 08:06:58 -05:00 committed by GitHub
commit 7c8ef809e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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))