From ed58b1543261e027b91a10301c917dc81db34f00 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 30 Mar 2023 08:47:13 -0700 Subject: [PATCH] Update base platform version in ostree-parse-pungi.py Why did I do this? Not sure. I guess I figured it's too much trouble to get it updated on every pungi-fedora branch? Anyway. Signed-off-by: Adam Williamson --- ostree-parse-pungi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ostree-parse-pungi.py b/ostree-parse-pungi.py index 769897e2..45b8e035 100644 --- a/ostree-parse-pungi.py +++ b/ostree-parse-pungi.py @@ -5,7 +5,7 @@ import sys # the "current" base platform version, i.e. the one that the GNOME # app builds currently tagged "stable" need -BASEVER = "37" +BASEVER = "38" # a regex to find where we replace that BASEPATT = re.compile(r"(runtime/org.fedoraproject.Platform/.*?/f)(\d+)")