aboutsummaryrefslogtreecommitdiffhomepage
path: root/bazarr.py
diff options
context:
space:
mode:
authorLouis Vézina <[email protected]>2020-04-11 08:05:12 -0400
committerLouis Vézina <[email protected]>2020-04-11 08:05:12 -0400
commit8f1d6883e72ba0498c6b1afe25da2d61244268d5 (patch)
treed6fee7bb54dd37d8d4ff4258c009dde00a61d999 /bazarr.py
parentcab52af42e424f57cb927e545a8dfab21ef9361b (diff)
downloadbazarr-8f1d6883e72ba0498c6b1afe25da2d61244268d5.tar.gz
bazarr-8f1d6883e72ba0498c6b1afe25da2d61244268d5.zip
Increased minimal version of Python 3.x to 3.7 instead of 3.6. We have too much trouble with 3.6 and some of our dependencies don't support it anymore.
Diffstat (limited to 'bazarr.py')
-rw-r--r--bazarr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bazarr.py b/bazarr.py
index 8f1b7da03..581689f76 100644
--- a/bazarr.py
+++ b/bazarr.py
@@ -14,7 +14,7 @@ from libs.six import PY3
def check_python_version():
python_version = platform.python_version_tuple()
minimum_py2_tuple = (2, 7, 13)
- minimum_py3_tuple = (3, 6, 0)
+ minimum_py3_tuple = (3, 7, 0)
minimum_py2_str = ".".join(str(i) for i in minimum_py2_tuple)
minimum_py3_str = ".".join(str(i) for i in minimum_py3_tuple)