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
1 changed files with 1 additions and 1 deletions

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]: