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:
parent
f5af475012
commit
1c4a20d86f
1 changed files with 0 additions and 2 deletions
2
setup.py
2
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue