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 | |
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.
-rw-r--r-- | bazarr.py | 2 | ||||
-rw-r--r-- | views/menu.tpl | 2 |
2 files changed, 2 insertions, 2 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) diff --git a/views/menu.tpl b/views/menu.tpl index fbfc6f269..db33bde24 100644 --- a/views/menu.tpl +++ b/views/menu.tpl @@ -237,7 +237,7 @@ <i class="python icon"></i> <div class="content"> <div class="header">Python deprecation warning</div> - <p><b><u>Bazarr won't update anymore until you upgrade Python!</u></b></p>Bazarr is now compatible with Python 3.6 and newer. You must upgrade Python as we don't support Python 2.x anymore. + <p><b><u>Bazarr won't update anymore until you upgrade Python!</u></b></p>Bazarr is now compatible with Python 3.7 and newer. You must upgrade Python as we don't support Python 2.x anymore. <div class="ui bulleted list"> % if os.name == 'posix': <div class="item">If you are running under Docker, don't worry, we'll take care of this for you. Just pull the new image.</div> |