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: Ia8741d70e3054ff0943d9bc72e09eac652237675
This commit is contained in:
DeepaJon 2017-04-05 09:58:31 +05:30
parent bdc8fadbda
commit 31da1519f1
2 changed files with 4 additions and 3 deletions

View File

@ -16,6 +16,7 @@ classifier =
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.5
[files]
packages =

View File

@ -1,7 +1,7 @@
[tox]
minversion = 1.6
skipsdist = True
envlist = py34,py27,pep8
envlist = py35,py27,pep8
[testenv]
usedevelop = True
@ -21,8 +21,8 @@ commands = oslo_debug_helper {posargs}
basepython = python2.7
commands = oslo_debug_helper {posargs}
[testenv:debug-py34]
basepython = python3.4
[testenv:debug-py35]
basepython = python3.5
commands = oslo_debug_helper {posargs}
[testenv:docs]