Skip to content

Commit f7945f6

Browse files
committed
support RTM as initial "CU" of supported versions
1 parent e40e6de commit f7945f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

check_stbuehler_exchange_version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def parse_supported_cu_versions(args: argparse.Namespace) -> dict[str, list[str]
410410
# `<h2 id="supported-versions-and-builds">Supported versions and builds</h2>`
411411
#
412412
# First column should contain "long name" of the version, second column one or
413-
# multiple `CU\d+` names referencing the currently supported CUs.
413+
# multiple `CU\d+|RTM` names referencing the currently supported CUs.
414414

415415
ms_release_list = requests.get(args.supported_cu_source)
416416
versions = {}
@@ -435,7 +435,7 @@ def parse_supported_cu_versions(args: argparse.Namespace) -> dict[str, list[str]
435435
for row in table:
436436
cells = [clean_html(s) for s in row]
437437
exch_version = cells[0]
438-
supported_cus = re.findall(r'\bCU\d+\b', cells[1])
438+
supported_cus = re.findall(r'\bCU\d+|RTM\b', cells[1])
439439
versions[exch_version] = supported_cus
440440
return versions
441441

0 commit comments

Comments
 (0)