URL: https://github.com/SSSD/sssd/pull/823 Author: sumit-bose Title: #823: CI: use python3-pep8 on Fedora 31 and later Action: opened
PR body: """ None """ To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/823/head:pr823 git checkout pr823
From e35a6725077779e9f94a2367909412f7319d37c0 Mon Sep 17 00:00:00 2001 From: Sumit Bose <sb...@redhat.com> Date: Mon, 3 Jun 2019 12:16:57 +0200 Subject: [PATCH] CI: use python3-pep8 on Fedora 31 and later --- contrib/ci/deps.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/contrib/ci/deps.sh b/contrib/ci/deps.sh index 502b67f8c4..7570575268 100644 --- a/contrib/ci/deps.sh +++ b/contrib/ci/deps.sh @@ -52,9 +52,18 @@ if [[ "$DISTRO_BRANCH" == -redhat-* ]]; then krb5-server krb5-workstation dbus-python - python-pep8 ) + if [[ "$DISTRO_BRANCH" == -redhat-fedora-3[1-9]* ]]; then + DEPS_LIST+=( + python3-pep8 + ) + else + DEPS_LIST+=( + python-pep8 + ) + fi + if [[ "$DISTRO_BRANCH" == -redhat-fedora-* ]]; then DEPS_LIST+=( http-parser-devel
_______________________________________________ sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/sssd-devel@lists.fedorahosted.org