1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-22 15:54:26 +00:00

Fixed function to prevent usage of Python 3.7

This commit is contained in:
Michiel van Baak Jansen 2023-12-11 20:03:56 -03:00 committed by GitHub
parent 256ceeb598
commit 5e68fac4d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,7 @@ from bazarr.app.get_args import args
def check_python_version():
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)
if int(python_version[0]) < minimum_py3_tuple[0]: