From 7253a0254d506a2a2a9074b2b0163d1803bf0e51 Mon Sep 17 00:00:00 2001 From: Van Hung Pham Date: Mon, 12 Jun 2017 16:26:48 +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: Iabbbc57f359e0c47d87bbc9c90e62451389a96d7 --- doc/source/devref/development.guidelines.rst | 1 - tox.ini | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/source/devref/development.guidelines.rst b/doc/source/devref/development.guidelines.rst index 3dbcb529..ca2f87cd 100644 --- a/doc/source/devref/development.guidelines.rst +++ b/doc/source/devref/development.guidelines.rst @@ -39,7 +39,6 @@ via the commands: .. sourcecode:: console tox -e py27 - tox -e py34 tox -e py35 .. diff --git a/tox.ini b/tox.ini index 30d4bd17..b9405e1d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py34,py27,pep8 +envlist = py35,py27,pep8 minversion = 2.0 skipsdist = True