URL: https://github.com/freeipa/freeipa/pull/297 Author: pvomacka Title: #297: Adjustments for setup requirements v2 Action: opened
PR body: """ Remove setup requirement on wheel since it triggers download. https://fedorahosted.org/freeipa/ticket/6468 """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/297/head:pr297 git checkout pr297
From b43f78cc1ef639839cf7c500b23fe0feae69d8ac Mon Sep 17 00:00:00 2001 From: Pavel Vomacka <pvoma...@redhat.com> Date: Thu, 1 Dec 2016 19:38:22 +0100 Subject: [PATCH] Adjustments for setup requirements v2 Remove setup requirement on wheel since it triggers download. https://fedorahosted.org/freeipa/ticket/6468 --- ipalib/setup.py | 3 --- ipaserver/setup.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/ipalib/setup.py b/ipalib/setup.py index 36b06fc..4239f0c 100644 --- a/ipalib/setup.py +++ b/ipalib/setup.py @@ -44,9 +44,6 @@ "python-nss", "six", ], - setup_requires=[ - "wheel", - ], extras_require={ "install": ["ipaplatform"], }, diff --git a/ipaserver/setup.py b/ipaserver/setup.py index 528b901..1f1b424 100755 --- a/ipaserver/setup.py +++ b/ipaserver/setup.py @@ -68,9 +68,6 @@ # "python-SSSDConfig", # "samba-python", ], - setup_requires=[ - "wheel", - ], entry_points={ 'custodia.authorizers': [ 'IPAKEMKeys = ipaserver.secrets.kem:IPAKEMKeys',
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code