URL: https://github.com/freeipa/freeipa/pull/1361
Author: tiran
 Title: #1361: Add python_requires to Python package metadata
Action: opened

PR body:
"""
freeIPA 4.6 and 4.7 requires Python 2.7 or >= 3.5.

https://pagure.io/freeipa/issue/7294

Signed-off-by: Christian Heimes <chei...@redhat.com>
"""

To pull the PR as Git branch:
git remote add ghfreeipa https://github.com/freeipa/freeipa
git fetch ghfreeipa pull/1361/head:pr1361
git checkout pr1361
From fdd0e00d23a0ab3621a560d67e85f44806deefff Mon Sep 17 00:00:00 2001
From: Christian Heimes <chei...@redhat.com>
Date: Wed, 6 Dec 2017 10:17:57 +0100
Subject: [PATCH] Add python_requires to Python package metadata

freeIPA 4.6 and 4.7 requires Python 2.7 or >= 3.5.

https://pagure.io/freeipa/issue/7294

Signed-off-by: Christian Heimes <chei...@redhat.com>
---
 ipasetup.py.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/ipasetup.py.in b/ipasetup.py.in
index 426cbdb6e0..9339777c46 100644
--- a/ipasetup.py.in
+++ b/ipasetup.py.in
@@ -90,13 +90,14 @@ PACKAGE_VERSION = {
 common_args = dict(
     version=VERSION,
     license="GPLv3",
-    author="FreeIPA Developers",
+    author="freeIPA Developers",
     author_email="freeipa-de...@redhat.com",
-    maintainer="FreeIPA Developers",
+    maintainer="freeIPA Developers",
     maintainer_email="freeipa-de...@redhat.com",
     url="http://www.freeipa.org/";,
     download_url="http://www.freeipa.org/page/Downloads";,
     platforms=["Linux", "Solaris", "Unix"],
+    python_requires=">=2.7.5,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
     classifiers=[
         "Development Status :: 5 - Production/Stable",
         "Intended Audience :: System Administrators",
_______________________________________________
FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org
To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org

Reply via email to