From f97d06c785a837ed860a20660ac6344ec546802c Mon Sep 17 00:00:00 2001 From: Ondrej Nosek Date: Jul 18 2019 08:01:27 +0000 Subject: Allow epel*-playground requests for epel8 and newer Signed-off-by: Ondrej Nosek --- diff --git a/fedpkg/cli.py b/fedpkg/cli.py index 1732a22..8e73f0f 100644 --- a/fedpkg/cli.py +++ b/fedpkg/cli.py @@ -960,7 +960,7 @@ targets to build the package for a particular stream. # If the requested branch is epel branch then also add epel\d+-playground branch # to the request list. # TODO: Remove the check for epel version >= 7 when we enable playground for epel7 - elif epel_playground and epel_version >= 7: + elif epel_playground and epel_version >= 8: branches = [branch, branch+"-playground"] else: branches = [branch]