Remove python 3.4 support

The gating on python 3.4 is restricted to <= Mitaka. There is no
need to continue to keep these settings.

From Newton onwards we are gating on python 3.5.

Change-Id: Ib6e6c62212796f493bb99fb3c5e39ab4f2e45cfc
This commit is contained in:
Gary Kotton 2017-01-01 01:24:46 -08:00
parent 3ed3d52c09
commit 36f55b33f8
2 changed files with 1 additions and 18 deletions

View File

@ -16,7 +16,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
[files]

18
tox.ini
View File

@ -1,5 +1,5 @@
[tox]
envlist = docs,py35,py34,py27,pep8
envlist = docs,py35,py27,pep8
minversion = 2.3.1
skipsdist = True
@ -42,12 +42,6 @@ deps =
{[testenv]deps}
-r{toxinidir}/neutron/tests/functional/requirements.txt
[testenv:functional-py34]
basepython = python3.4
setenv = {[testenv:functional]setenv}
deps =
{[testenv:functional]deps}
[testenv:functional-py35]
basepython = python3.5
setenv = {[testenv:functional]setenv}
@ -65,16 +59,6 @@ commands =
{toxinidir}/tools/deploy_rootwrap.sh {toxinidir} {envdir}/etc {envdir}/bin
{toxinidir}/tools/ostestr_compat_shim.sh {posargs}
[testenv:dsvm-functional-py34]
basepython = python3.4
setenv = {[testenv:dsvm-functional]setenv}
sitepackages={[testenv:dsvm-functional]sitepackages}
deps =
{[testenv:dsvm-functional]deps}
commands =
{toxinidir}/tools/deploy_rootwrap.sh {toxinidir} {envdir}/etc {envdir}/bin
{toxinidir}/tools/ostestr_compat_shim.sh {posargs}
[testenv:dsvm-functional-py35]
basepython = python3.5
setenv = {[testenv:dsvm-functional]setenv}