From 48fc316adf4e1ab2328bea1d844abdf7a186bee9 Mon Sep 17 00:00:00 2001 From: Eyal Date: Tue, 16 Apr 2019 12:20:50 +0300 Subject: [PATCH] Support python 3.6 and 3.7 According to 'Tested Runtimes for Train' [1] we need to support Python 2.7, Python 3.7 and Python 3.6 runtimes. [1] https://governance.openstack.org/tc/reference/runtimes/train.html Change-Id: I455f69f2c3bf036a305597d0263e9e7617f3c373 --- setup.cfg | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0790c37..ad28cc2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,9 +16,8 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 - Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 [files] packages = diff --git a/tox.ini b/tox.ini index 58b79a2..8f14be9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py35,py36,py27,pep8 +envlist = py37,py36,py27,pep8 skipsdist = True [testenv]