From e71dd1df49351d1db2885ff65736ce55db763349 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 2 Aug 2026 14:01:26 +0300 Subject: [PATCH] Remove no-branch from release dashboard --- master/custom/release_dashboard.py | 1 - master/custom/templates/releasedashboard.html | 3 --- 2 files changed, 4 deletions(-) diff --git a/master/custom/release_dashboard.py b/master/custom/release_dashboard.py index 951975ce..a02b8979 100644 --- a/master/custom/release_dashboard.py +++ b/master/custom/release_dashboard.py @@ -122,7 +122,6 @@ def branches(self): branches.append(Branch(self, { **info, 'version': version, 'tag': tag })) - branches.append(self._no_branch) return branches @cached_property diff --git a/master/custom/templates/releasedashboard.html b/master/custom/templates/releasedashboard.html index d7cc8704..24cb9700 100644 --- a/master/custom/templates/releasedashboard.html +++ b/master/custom/templates/releasedashboard.html @@ -120,9 +120,6 @@

Python Release Status Dashboard

{% for branch in state.branches %} - {% if branch.tag == 'no-branch' %} - {% continue %} - {% endif %}