From a81d72f22e93f8375e6a630985f02a3212451680 Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Wed, 8 Feb 2017 11:16:37 +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: Ib94f0f269173072b5a4c77d46b43852e78092487 --- TESTING.rst | 2 +- setup.cfg | 1 - tox.ini | 6 +++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/TESTING.rst b/TESTING.rst index ddd729a9d..325947a79 100644 --- a/TESTING.rst +++ b/TESTING.rst @@ -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. diff --git a/setup.cfg b/setup.cfg index 5d0396070..985f47813 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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] diff --git a/tox.ini b/tox.ini index 652e8ce6f..0ab07676d 100644 --- a/tox.ini +++ b/tox.ini @@ -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]