Skip to content
Snippets Groups Projects
Commit a5799ba9 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[fc-script] specify minimum required Python version

parent 442d2927
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,10 @@ import os
import re
import glob
MIN_PYTHON = (3, 5) # for glob(recursive)
if sys.version_info < MIN_PYTHON:
sys.exit("Python %s.%s or later is required.\n" % MIN_PYTHON)
debug = False
arg = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment