mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 00:03:33 +00:00
Fixed function to prevent usage of Python 3.7
This commit is contained in:
parent
256ceeb598
commit
5e68fac4d1
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ from bazarr.app.get_args import args
|
||||||
|
|
||||||
def check_python_version():
|
def check_python_version():
|
||||||
python_version = platform.python_version_tuple()
|
python_version = platform.python_version_tuple()
|
||||||
minimum_py3_tuple = (3, 7, 0)
|
minimum_py3_tuple = (3, 8, 0)
|
||||||
minimum_py3_str = ".".join(str(i) for i in minimum_py3_tuple)
|
minimum_py3_str = ".".join(str(i) for i in minimum_py3_tuple)
|
||||||
|
|
||||||
if int(python_version[0]) < minimum_py3_tuple[0]:
|
if int(python_version[0]) < minimum_py3_tuple[0]:
|
||||||
|
|
Loading…
Reference in a new issue