Change warn that minimum supported Python is version 3.9. Support for 3.8 will be removed when Python 3.14 is added.

This commit is contained in:
JackDandy 2025-08-22 17:46:14 +01:00
parent 94cc1a7821
commit 3232fbd541
2 changed files with 12 additions and 9 deletions

View file

@ -1,4 +1,9 @@
### 3.34.1 (2025-08-14 23:05:00 UTC)
### 3.34.2 (2025-08-22 17:45:00 UTC)
* Change warn that minimum supported Python is version 3.9. Support for 3.8 will be removed when Python 3.14 is added
### 3.34.1 (2025-08-14 23:05:00 UTC)
* Change add support for Python 3.13.7

View file

@ -371,20 +371,18 @@
#end if
##
#set $py_ver = sys.version_info[:3]
#if $py_ver in [(3, 9, 3), (3, 8, 1), (3, 7, 6)]:
#set $py_ver_str = '.'.join(map(str, $py_ver[:2]))
#set $is_no_py = $py_ver[:2] in [(3, 9), (3, 8)]
#if $is_no_py or $py_ver in [(3, 8, 1)]:
<div class="alert alert-danger topbar-notification upgrade-py" role="alert">
#if (3, 9, 3) == $py_ver:
<p>Your installed Python 3.9.3 has been <a href="<%= anon_url('https://bugs.python.org/issue43710') %>" onclick="window.open(this.href);return !1;">recalled</a> due to breakage with C extensions<br>
Please replace with Python <b>3.9.4</b>: <a href="<%= anon_url('https://www.python.org/downloads/') %>" onclick="window.open(this.href);return !1;">download here</a>
#if $is_no_py:
<p>Your installed Python $py_ver_str is not supported and will soon be deprecated.<br>
Please replace with newest of Python <b>3.13, 3.12, 3.11, or 3.10</b>: <a href="<%= anon_url('https://www.python.org/downloads/') %>" onclick="window.open(this.href);return !1;">download here</a>
</p>
#elif (3, 8, 1) == $py_ver:
<p>Your installed Python 3.8.1 has a <a href="<%= anon_url('https://github.com/python/cpython/commit/ea316fd21527dec53e704a5b04833ac462ce3863') %>" onclick="window.open(this.href);return !1;">critical issue</a> affecting the parsing of URLs<br>
Please replace with Python <b>3.8.2</b>, <b>3.8.0</b>, or older: <a href="<%= anon_url('https://www.python.org/downloads/') %>" onclick="window.open(this.href);return !1;">download here</a>
</p>
#else if (3, 7, 6) == $py_ver:
<p>Your installed Python 3.7.6 has a <a href="<%= anon_url('https://github.com/python/cpython/commit/505b6015a1579fc50d9697e4a285ecc64976397a') %>" onclick="window.open(this.href);return !1;">critical issue</a> affecting the parsing of URLs<br>
Please replace with Python <b>3.7.7</b>, <b>3.7.5</b>, or older: <a href="<%= anon_url('https://www.python.org/downloads/') %>" onclick="window.open(this.href);return !1;">download here</a>
</p>
#end if
</div>
#end if