From 6426ed857329c58ca070d129e4e50ab82d6bfb40 Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Tue, 24 Jan 2017 10:03:30 +0700 Subject: [PATCH] Remove support for py33/py26 Python 3.3/2.6 is not supported from Mitaka, as per Infra. This patch removes the support and add py35 for the same. Change-Id: I31153d37eea4fb920e8caa6612e8d3e72beb24e5 --- setup.cfg | 4 +--- tox.ini | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 1e1a6fc..4780da2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,10 +15,8 @@ classifier = Programming Language :: Python Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 - Programming Language :: Python :: 2.6 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 - Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 [entry_points] console_scripts = diff --git a/tox.ini b/tox.ini index 7928cad..92714da 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py33,py34,py26,py27,pypy,pep8 +envlist = py35,py27,pypy,pep8 skipsdist = True [testenv]