Fixed function to prevent usage of Python 3.7

pull/2329/head v1.4.1-beta.5
Michiel van Baak Jansen 6 months ago committed by GitHub
parent 256ceeb598
commit 5e68fac4d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save