From 24d1cbbee92c95d939a956ae5b5a44e9df17ad6d Mon Sep 17 00:00:00 2001 From: deepakmourya Date: Thu, 15 Jun 2017 09:50:52 +0530 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: Iec20a052df14c3a6c882012488c36ea3eb0a939a --- setup.cfg | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 7bb378df..02bee1ea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,8 +16,7 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.4 - + Programming Language :: Python :: 3.5 [build_sphinx] source-dir = doc/source build-dir = doc/build diff --git a/tox.ini b/tox.ini index e5da3233..86a0a4ba 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = docs,py27,pep8 +envlist = docs,py27,py35,pep8 skipsdist = True [testenv]