diff --git a/CHANGES.md b/CHANGES.md index 0e204e94..b6477f53 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/gui/slick/interfaces/default/inc_top.tmpl b/gui/slick/interfaces/default/inc_top.tmpl index 7b5bb6de..cf78809f 100644 --- a/gui/slick/interfaces/default/inc_top.tmpl +++ b/gui/slick/interfaces/default/inc_top.tmpl @@ -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)]:
#end if