fix(global_defaults): correct fedora version upper bound to 43

This commit is contained in:
2026-02-22 03:08:23 +01:00
parent 35f1702447
commit 9dd71b2559

View File

@@ -123,7 +123,7 @@
or (
os == "debian" and (os_version | string) in ["10", "11", "12", "13", "unstable"]
) or (
os == "fedora" and (os_version | int) >= 38 and (os_version | int) <= 45
os == "fedora" and (os_version | int) >= 38 and (os_version | int) <= 43
) or (
os in ["rocky", "almalinux"]
and (os_version | string) is match("^(8|9|10)(\\.\\d+)?$")