From 5e68fac4d175f2999b5b05bf7bdd02b76cdf942d Mon Sep 17 00:00:00 2001 From: Michiel van Baak Jansen Date: Mon, 11 Dec 2023 20:03:56 -0300 Subject: [PATCH] Fixed function to prevent usage of Python 3.7 --- bazarr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr.py b/bazarr.py index c85aee411..e0f214f93 100644 --- a/bazarr.py +++ b/bazarr.py @@ -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]: