summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMichiel van Baak Jansen <[email protected]>2023-12-11 20:03:56 -0300
committerGitHub <[email protected]>2023-12-11 18:03:56 -0500
commit5e68fac4d175f2999b5b05bf7bdd02b76cdf942d (patch)
tree55571f81f24050cc2767f449d442016baab53150
parent256ceeb598e918cd26867ab583c8748193b31b88 (diff)
downloadbazarr-5e68fac4d175f2999b5b05bf7bdd02b76cdf942d.tar.gz
bazarr-5e68fac4d175f2999b5b05bf7bdd02b76cdf942d.zip
Fixed function to prevent usage of Python 3.7v1.4.1-beta.5
-rw-r--r--bazarr.py2
1 files changed, 1 insertions, 1 deletions
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]: