From b0199512fc09b1f87aa3145920852d292acd8e2a Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Wed, 25 Feb 2026 12:23:35 +0200 Subject: [PATCH] Skip pre-pre-release versions with no branch yet --- master/custom/release_dashboard.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/master/custom/release_dashboard.py b/master/custom/release_dashboard.py index 83a9fd2a..6364c592 100644 --- a/master/custom/release_dashboard.py +++ b/master/custom/release_dashboard.py @@ -114,6 +114,8 @@ def branches(self): for version, info in self._app.branch_info.items(): if info['status'] == 'end-of-life': continue + if info['branch'] == '': + continue if info['branch'] == 'main': tag = '3.x' else: