From 64e1cde72e0388aee87730cfbc37fa8b32265477 Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Sat, 17 May 2025 12:45:33 +0200 Subject: [PATCH] =?UTF-8?q?[ghc]=C2=A0Ignore=20unreleased=20releases?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- releases/ghc.json | 5 ----- src/ghc-wiki.py | 3 +++ 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/releases/ghc.json b/releases/ghc.json index af144278..b9fc5052 100644 --- a/releases/ghc.json +++ b/releases/ghc.json @@ -20,11 +20,6 @@ "eol": true, "eoas": true }, - "9.14": { - "name": "9.14", - "eol": false, - "eoas": false - }, "9.12": { "name": "9.12", "eol": false, diff --git a/src/ghc-wiki.py b/src/ghc-wiki.py index f95bbadf..161baee3 100644 --- a/src/ghc-wiki.py +++ b/src/ghc-wiki.py @@ -65,6 +65,9 @@ with releasedata.ProductData("ghc") as product: for row in series_table[1:]: [series, _download_link, _most_recent, next_planned, status] = row + if status == "Next major release": + continue + series = series.split(' ') [0] series = series.replace('\\.', '.') if series == "Nightlies":