URL: https://github.com/freeipa/freeipa/pull/296
Author: tiran
 Title: #296: Require python-gssapi >= 1.2.0, take 2
Action: synchronized

To pull the PR as Git branch:
git remote add ghfreeipa https://github.com/freeipa/freeipa
git fetch ghfreeipa pull/296/head:pr296
git checkout pr296
From 50e0075eba84d8e93b4beee793c6c8919636d110 Mon Sep 17 00:00:00 2001
From: Christian Heimes <chei...@redhat.com>
Date: Thu, 1 Dec 2016 16:08:19 +0100
Subject: [PATCH] Require python-gssapi >= 1.2.0, take 2

Fix version range typo in ipasetup.py.in.

Sorry, the bug slipped through my internal tests. The version pinning is
only relevant for make wheel_bundle. The wheel bundle target has been
failing from the start because python-nss has a build bug for wheels,
https://bugzilla.redhat.com/show_bug.cgi?id=1389739

https://fedorahosted.org/freeipa/ticket/6468

Signed-off-by: Christian Heimes chei...@redhat.com
---
 ipasetup.py.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ipasetup.py.in b/ipasetup.py.in
index 9ce0b35..6a33fb8 100644
--- a/ipasetup.py.in
+++ b/ipasetup.py.in
@@ -65,7 +65,7 @@ if SETUPTOOLS_VERSION < (8, 0, 0):
 PACKAGE_VERSION = {
     'cryptography': 'cryptography >= 1.3.1',
     'dnspython': 'dnspython >= 1.13',
-    'gssapi': 'gssapi > 1.2.0',
+    'gssapi': 'gssapi >= 1.2.0',
     'ipaclient': 'ipaclient == {}'.format(VERSION),
     'ipalib': 'ipalib == {}'.format(VERSION),
     'ipaplatform': 'ipaplatform == {}'.format(VERSION),
-- 
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

Reply via email to