From 55c7eac9a00cb9d62995075802ab1250d31af417 Mon Sep 17 00:00:00 2001 From: qingszhao Date: Sat, 29 Sep 2018 15:52:13 +0800 Subject: [PATCH] Removed older version of python added 3.5 In setup.cfg file the python 3.5 is added In tox.ini the python 3.5 is added Change-Id: I7a5c18e5a851f116ab9d42f6118c3f29667d6fa0 --- setup.cfg | 3 +-- tox.ini | 5 ++++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 7b05ce6..cac4a5a 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.3 - Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 [files] packages = diff --git a/tox.ini b/tox.ini index 05b611b..1505a94 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py27,pep8 +envlist = py27,py35,pep8 skipsdist = True [testenv] @@ -26,12 +26,15 @@ commands = rm -f .testrepository/times.dbm [testenv:pep8] +basepython = python3 commands = flake8 {posargs} [testenv:venv] +basepython = python3 commands = {posargs} [testenv:debug] +basepython = python3 commands = oslo_debug_helper {posargs} [flake8]