From 38e77c8a5c8b69b72814174da8cc0d54a12c7f08 Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Wed, 8 Feb 2017 09:42:11 +0700 Subject: [PATCH] Remove support for py34 The gating on python 3.4 is restricted to <= Mitaka. This is due to the change from Ubuntu Trusty to Xenial, where only python3.5 is available. There is no need to continue to keep these settings. Change-Id: I37e05189a65f5d86a3149065e6d405a23a4c66b8 --- setup.cfg | 3 +-- tox.ini | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2742f202a..e6d307500 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,7 +18,6 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 @@ -49,4 +48,4 @@ universal = 1 [coverage:run] omit = manilaclient/tests/* -branch = true \ No newline at end of file +branch = true diff --git a/tox.ini b/tox.ini index fa036addf..5e1829862 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] distribute = False -envlist = py35,py34,py27,pep8 +envlist = py35,py27,pep8 minversion = 2.0 skipsdist = True @@ -27,8 +27,8 @@ commands = oslo_debug_helper -t manilaclient/tests {posargs} basepython = python2.7 commands = oslo_debug_helper -t manilaclient/tests {posargs} -[testenv:debug-py34] -basepython = python3.4 +[testenv:debug-py35] +basepython = python3.5 commands = oslo_debug_helper -t manilaclient/tests {posargs} [testenv:pep8]