Remove outdated Python version check

The Python version is already checked at the top of the file. That check was added in 81a58186c6.
This commit is contained in:
Luflosi 2020-10-05 14:30:13 +02:00
parent f5af475012
commit 1c4a20d86f
No known key found for this signature in database
GPG key ID: 4E41E29EDCC345D0

View file

@ -1176,8 +1176,6 @@ def option_parser() -> argparse.ArgumentParser: # {{{
def main() -> None:
global verbose
if sys.version_info < (3, 5):
raise SystemExit('python >= 3.5 required')
args = option_parser().parse_args(namespace=Options())
verbose = args.verbose > 0
args.prefix = os.path.abspath(args.prefix)