fix generate_combination

- Use 6.5.3 and 6.2.3 for detection

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2024-02-10 12:37:16 +09:00
parent 4994594112
commit 50afdb40a8

View File

@@ -42,7 +42,7 @@ def iter_arches() -> Generator[dict, None, None]:
logger.info("Fetching arches")
archive_ids = list(iter_archive_ids(category="qt"))
for archive_id in tqdm(archive_ids):
for version in ("latest", "6.5", "6.2", "5.15.2", "5.13.2", "5.9.9"):
for version in ("latest", "6.5.3", "6.2.4", "5.15.2", "5.13.2", "5.9.9"):
for arch_name in MetadataFactory(archive_id, architectures_ver=version).getList():
yield {
"os_name": archive_id.host,