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:
2
setup.py
2
setup.py
@@ -1176,8 +1176,6 @@ def option_parser() -> argparse.ArgumentParser: # {{{
|
|||||||
|
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
global verbose
|
global verbose
|
||||||
if sys.version_info < (3, 5):
|
|
||||||
raise SystemExit('python >= 3.5 required')
|
|
||||||
args = option_parser().parse_args(namespace=Options())
|
args = option_parser().parse_args(namespace=Options())
|
||||||
verbose = args.verbose > 0
|
verbose = args.verbose > 0
|
||||||
args.prefix = os.path.abspath(args.prefix)
|
args.prefix = os.path.abspath(args.prefix)
|
||||||
|
|||||||
Reference in New Issue
Block a user