mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 02:29:40 +00:00
added system python check
This commit is contained in:
parent
d417a14f75
commit
b98fc2fd3f
1 changed files with 4 additions and 0 deletions
4
av1an.py
4
av1an.py
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in a new issue