From 62b14c632036f5e07f80ca2812f29649261a221d Mon Sep 17 00:00:00 2001 From: Morgan Fainberg Date: Tue, 17 May 2016 16:51:19 -0700 Subject: [PATCH] Add py3 info to setup.cfg Add the python 3 classifiers to setup.cfg and proper envs to tox.ini. Change-Id: I771c148ee8d246a5a3ac45e3a2e45c1fe3a691b1 --- setup.cfg | 4 +++- tox.ini | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 7ef13fe..b7347dd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -12,6 +12,8 @@ classifier = Programming Language :: Python Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.4 [files] packages = @@ -33,4 +35,4 @@ autodoc_tree_excludes = ldappool/tests/ [wheel] -universal = 1 \ No newline at end of file +universal = 1 diff --git a/tox.ini b/tox.ini index 44b4f66..31a001d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 1.6 skipsdist = True -envlist = py27,pep8,cover,docs +envlist = py27,py34,py35,pep8,cover,docs [testenv] usedevelop = True