aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazarr.py
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-12-24 15:19:09 +0000
committerGitHub <[email protected]>2024-12-24 15:19:09 +0000
commit6ec304d13d5ed8a217f0f6d6ee98ecc98cac87af (patch)
treebb37288a8dba25f485c5b763098afb848a0a9669 /bazarr.py
parentd6b74c908353c5051e188565e01b686a7017c3e9 (diff)
parent2247c55bfa9fd38bf3fbe80330a5c37f4988ee6a (diff)
downloadbazarr-master.tar.gz
bazarr-master.zip
Merge development into masterHEADmaster
Diffstat (limited to 'bazarr.py')
-rw-r--r--bazarr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bazarr.py b/bazarr.py
index 7e75272b0..2a1adea1d 100644
--- a/bazarr.py
+++ b/bazarr.py
@@ -25,8 +25,8 @@ def check_python_version():
print("Python " + minimum_py3_str + " or greater required. "
"Current version is " + platform.python_version() + ". Please upgrade Python.")
exit_program(EXIT_PYTHON_UPGRADE_NEEDED)
- elif int(python_version[0]) == 3 and int(python_version[1]) > 11:
- print("Python version greater than 3.11.x is unsupported. Current version is " + platform.python_version() +
+ elif int(python_version[0]) == 3 and int(python_version[1]) > 12:
+ print("Python version greater than 3.12.x is unsupported. Current version is " + platform.python_version() +
". Keep in mind that even if it works, you're on your own.")
elif (int(python_version[0]) == minimum_py3_tuple[0] and int(python_version[1]) < minimum_py3_tuple[1]) or \
(int(python_version[0]) != minimum_py3_tuple[0]):