From 1c4a20d86faabe5298fbc6ae3e17aaf96dec19a1 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Mon, 5 Oct 2020 14:30:13 +0200 Subject: [PATCH] Remove outdated Python version check The Python version is already checked at the top of the file. That check was added in 81a58186c6fae2de7bb4d7c7a3dc1a418d2b3d03. --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index fe4eed68b..fc84bc7bd 100755 --- a/setup.py +++ b/setup.py @@ -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)