Recognize wsl2 images produced by koji

The image type was added to productmd 1.45, so we should also require
that version.

Merges: https://pagure.io/pungi/pull-request/1841
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
(cherry picked from commit 668547ed3f8da2528fbeb1b12040182ca02e7f31)
This commit is contained in:
Lubomír Sedlář 2025-06-05 08:28:37 +02:00 committed by Stepan Oksanichenko
parent 384a7a0bee
commit 2d48a341a6
2 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ KIWIEXTENSIONS = [
("fex", ["squashfs.gz"], "squashfs.gz"), ("fex", ["squashfs.gz"], "squashfs.gz"),
("fex", ["squashfs"], "squashfs"), ("fex", ["squashfs"], "squashfs"),
("container", ["oci.tar.xz"], "tar.xz"), ("container", ["oci.tar.xz"], "tar.xz"),
("wsl2", ["wsl"], "wsl"),
] ]

View File

@ -60,7 +60,7 @@ setup(
"jsonschema", "jsonschema",
"kobo", "kobo",
"lxml", "lxml",
"productmd>=1.43", "productmd>=1.45",
"dogpile.cache", "dogpile.cache",
], ],
tests_require=["pytest", "pytest-cov", "pyfakefs"], tests_require=["pytest", "pytest-cov", "pyfakefs"],