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
This commit is contained in:
Cao Xuan Hoang
2017-02-08 09:42:11 +07:00
parent 56776ce009
commit 38e77c8a5c
2 changed files with 4 additions and 5 deletions

View File

@@ -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
branch = true

View File

@@ -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]