mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Fix wrong supported year recognition
This commit is contained in:
parent
ad7097587f
commit
f4f094d8c6
@ -19,7 +19,10 @@ The following versions of ClickHouse server are currently supported with securit
|
||||
| 24.3 | ✔️ |
|
||||
| 24.2 | ❌ |
|
||||
| 24.1 | ❌ |
|
||||
| 23.* | ❌ |
|
||||
| 23.12 | ❌ |
|
||||
| 23.11 | ❌ |
|
||||
| 23.10 | ❌ |
|
||||
| 23.9 | ❌ |
|
||||
| 23.8 | ✔️ |
|
||||
| 23.7 | ❌ |
|
||||
| 23.6 | ❌ |
|
||||
|
@ -98,7 +98,7 @@ def generate_supported_versions() -> str:
|
||||
lts.append(version)
|
||||
to_append = f"| {version} | ✔️ |"
|
||||
if to_append:
|
||||
if len(regular) == max_regular or len(lts) == max_lts:
|
||||
if len(regular) == max_regular and len(lts) == max_lts:
|
||||
supported_year = year
|
||||
table.append(to_append)
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user