Merge "Add python version constraint python>=2.7"

This commit is contained in:
Jenkins 2016-07-07 17:12:59 +00:00 committed by Gerrit Code Review
commit 0746b9b166

@ -15,7 +15,11 @@
# limitations under the License.
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
import setuptools, sys
if sys.version_info < (2, 7):
sys.exit('Sorry, Python < 2.7 is not supported for'
' python-swiftclient>=3.0')
setuptools.setup(
setup_requires=['pbr'],