From e7dde0bb792a4d7a3f0293d915f17e79e4b16de2 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Mon, 13 Jul 2015 04:17:44 -0700 Subject: [PATCH] py34 not py33 is tested and supported The setup.cfg refers to Programming Language of Python 3.3 whereas jenkins is setup only to test Python 3.4. This patch updates setup.cfg and removes py33 from tox.ini. TrivialFix Change-Id: I6e4b01bf4997a99fd0ac0c2602d87321c076d2ad --- setup.cfg | 2 +- tox.ini | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2a72b8ff..4ff866e0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,7 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 + Programming Language :: Python :: 3.4 [files] packages = diff --git a/tox.ini b/tox.ini index 403cc49b..b11122d5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 1.6 skipsdist = True -envlist = py26,py27,py33,py34,pep8 +envlist = py26,py27,py34,pep8 [testenv] usedevelop = True @@ -14,10 +14,6 @@ deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = python setup.py testr --testr-args='{posargs}' -[testenv:py33] -deps = -r{toxinidir}/requirements.txt - -r{toxinidir}/test-requirements-py3.txt - [testenv:py34] deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements-py3.txt