From 50622f2f8174a4c33a15685e1e2b12a7956b7238 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Aug 13 2022 16:44:00 +0000 Subject: block_retired.py: Allow retiring on f37, disable on f36 F37 is the new branched. F36 is GA and shouldn't allow retiring packages any more. https://pagure.io/releng/issue/10960 Signed-off-by: Kalev Lember --- diff --git a/scripts/block_retired.py b/scripts/block_retired.py index 0ff0050..045daa5 100755 --- a/scripts/block_retired.py +++ b/scripts/block_retired.py @@ -13,8 +13,8 @@ import requests log = logging.getLogger(__name__) -RETIRING_BRANCHES = ["el6", "epel7", "epel8", "epel8-next", "epel9", "epel9-next", "epel8-playground", "rawhide", "f36"] -PROD_ONLY_BRANCHES = ["el6", "epel7", "epel8", "epel8-next", "epel9", "epel9-next", "epel8-playground", "rawhide", "f36"] +RETIRING_BRANCHES = ["el6", "epel7", "epel8", "epel8-next", "epel9", "epel9-next", "epel8-playground", "rawhide", "f37"] +PROD_ONLY_BRANCHES = ["el6", "epel7", "epel8", "epel8-next", "epel9", "epel9-next", "epel8-playground", "rawhide", "f37"] PRODUCTION_PDC = "https://pdc.fedoraproject.org" STAGING_PDC = "https://pdc.stg.fedoraproject.org"