Merge "Remove support for py34"

This commit is contained in:
Jenkins 2017-03-01 17:16:56 +00:00 committed by Gerrit Code Review
commit 868bc0d971
3 changed files with 4 additions and 5 deletions

View File

@ -68,7 +68,7 @@ environments for running test cases. It uses `Testr`_ for managing the running
of the test cases.
Tox handles the creation of a series of `virtualenvs`_ that target specific
versions of Python (2.7, 3.4, etc).
versions of Python (2.7, 3.5, etc).
Testr handles the parallel execution of series of test cases as well as
the tracking of long-running tests and other things.

View File

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

View File

@ -1,5 +1,5 @@
[tox]
envlist = py35,py34,py27,pep8,docs
envlist = py35,py27,pep8,docs
minversion = 1.6
skipsdist = True
@ -38,8 +38,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:pep8]