diff options
author | Louis Vézina <[email protected]> | 2020-04-11 08:05:12 -0400 |
---|---|---|
committer | Louis Vézina <[email protected]> | 2020-04-11 08:05:12 -0400 |
commit | 8f1d6883e72ba0498c6b1afe25da2d61244268d5 (patch) | |
tree | d6fee7bb54dd37d8d4ff4258c009dde00a61d999 /bazarr.py | |
parent | cab52af42e424f57cb927e545a8dfab21ef9361b (diff) | |
download | bazarr-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |