From d49cdd817080892b20be6ba7488eefdac13b5607 Mon Sep 17 00:00:00 2001 From: shu-mutou Date: Tue, 15 Dec 2015 17:35:50 +0900 Subject: [PATCH] Drop py33 support "Python 3.3 support is being dropped since OpenStack Liberty." written in following URL. https://wiki.openstack.org/wiki/Python3 And already the infra team and the oslo team are dropping py33 support from their projects. Since we rely on oslo for a lot of our work, and depend on infra for our CI, we should drop py33 support too. Change-Id: Iadcce946a0e4646c99cf99a9cf4cc207bb40ca8f Closes-Bug: #1526170 --- setup.cfg | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 66553c6f..c34db3aa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,8 +19,7 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.2 - Programming Language :: Python :: 3.3 + Programming Language :: Python :: 3.4 Programming Language :: Python :: Implementation :: PyPy [global] diff --git a/tox.ini b/tox.ini index e66d1a02..9c3881a5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py27,py33,py34,pypy,pep8 +envlist = py27,py34,pypy,pep8 skipsdist = True [testenv]