From ff0f52e3a16d6dce964a88b78cd7b0ce72c5d453 Mon Sep 17 00:00:00 2001 From: Roman Prykhodchenko Date: Tue, 2 Jul 2013 20:47:56 +0300 Subject: [PATCH] Added Python-2.6 to the classifier. OpenStack is often used with dustributions of GNU/Linux which use python-2.6 as a default python interpreter. Other OpenStack projects declare compatibility with python-2.6. Ironic is been continuously tested for compatibility with python-2.6 so we must declare this in the classifier to stay synced with other OpenStack services. Change-Id: Idf296e925c39d2847e7c8d7bfca073b5f9681754 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bad41c2049..f874ef96d6 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,8 @@ setuptools.setup( 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', - ], + 'Programming Language :: Python :: 2.6', + ], include_package_data=True, setup_requires=['d2to1>=0.2.10,<0.3', 'pbr>=0.5,<0.6'], d2to1=True,