From 8f9da79911b339c6f56ef16f2e89cd5ec89aadd9 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sat, 17 Dec 2016 19:25:50 +0100 Subject: [PATCH] python version changes In OpenStack CI we use python 2.7 and 3.5, use those in tox.ini, remove 2.6, 3.3, 3.4 from setup. Remove 2.6 from setup.cfg and change 3.3 to 3.5. Change-Id: Ie69ca899f6fed9b1948d0fc3cb92393135d360b5 --- setup.cfg | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 31e5226..8a10155 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,9 +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.5 [files] packages = diff --git a/tox.ini b/tox.ini index 4548cdb..a249245 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py26,py27,py33,py34,pypy,pep8 +envlist = py27,py35,pypy,pep8 skipsdist = True [testenv]