diff mbox series

[yocto-autobuilder-helper,07/11] scripts/release-parser.py: changed exceptions after tag clean up

Message ID 20250305102506.2043524-7-richard.purdie@linuxfoundation.org
State New
Headers show
Series [yocto-autobuilder-helper,01/11] scripts/run-dashboard-index: Add basic index page for new dashboard site | expand

Commit Message

Richard Purdie March 5, 2025, 10:25 a.m. UTC
From: Michael Halstead <mhalstead@linuxfoundation.org>

Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
---
 scripts/release-parser.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/scripts/release-parser.py b/scripts/release-parser.py
index e0de351..1e46315 100755
--- a/scripts/release-parser.py
+++ b/scripts/release-parser.py
@@ -32,9 +32,7 @@  def get_git_tags():
     tag_list = []
     branches = sorted(set([tag.name[:9] for tag in tags]))
     # Remove bad tags
-    branches.remove("yocto-1.9")
-    branches.remove("yocto_1.5")
-    branches.remove("yocto-1.4")
+    branches.remove("yocto-1.9") # To deal with milestone 1 before 1.9 was renamed 2.0.
 
     odd_commit_strings = ["rc", "final", "docs"]
     for branch in branches: