added system python check

This commit is contained in:
Zen 2020-02-05 19:57:29 +02:00
parent d417a14f75
commit b98fc2fd3f

View file

@ -12,6 +12,10 @@ from shutil import rmtree
from math import ceil
from multiprocessing import Pool
if sys.version_info < (3, 7):
print('Av1an requires at least Python 3.7 to run.')
sys.exit(1)
class ProgressBar: