v.0.4 - check Python version at startup

This commit is contained in:
Patrick Lipka 2022-09-22 01:58:45 +02:00
parent a6e549a2da
commit aa53023153
2 changed files with 11 additions and 1 deletions

View File

@ -2,6 +2,13 @@ import os
import argparse
import glob
import json
import sys
def check_python_version():
python_version = sys.version_info
if not (python_version.major >= 3 and python_version.minor >= 3):
print("Minimum Python version needed: 3.3.0")
sys.exit(1)
def init():

View File

@ -7,10 +7,13 @@ from lib.shell import get_from_command
from lib.toolchain import get_compiler_version, get_mpi_version, set_toolchain
from lib.sort import sort_libs_by_dependencies
from lib.installer import install_lib
from lib.init import init
from lib.init import init, check_python_version
SCRIPT_VERSION = "v0.3"
# check if Python >=3.3.0 is used
check_python_version()
# initialization by argparser
arg_namespace, args = init()