From: Oleg Broytman Date: Sat, 15 Apr 2017 18:59:37 +0000 (+0300) Subject: Python: 2.6, 2.7 and 3.3+ X-Git-Tag: 0.0.1~11 X-Git-Url: https://git.phdru.name/?p=ppu.git;a=commitdiff_plain;h=985fdc7abb51677f147c5abde9709251dccabc86 Python: 2.6, 2.7 and 3.3+ --- diff --git a/setup.py b/setup.py index a3050ec..c789abe 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,11 @@ setup(name='remove-old-files', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 2 :: Only', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], scripts=[], requires=[], diff --git a/tox.ini b/tox.ini index a69b545..18cfb29 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 1.8 toxworkdir={homedir}/.tox/remove-old-files -envlist = {py26,py27,py34},{py27,py34}-flake8 +envlist = {py26,py27,py33,py34,py35,py36},{py27,py34}-flake8 # Base test environment settings [testenv] @@ -9,16 +9,13 @@ deps = pytest pytest-cov py26: argparse - py26,py27: m_lib>=2.0 - py34: m_lib>=3.0 -sitepackages = True # Don't fail or warn on uninstalled commands whitelist_externals = flake8 [general] commands = - python -m pytest --cov=remove-old-files + python -m pytest [testenv:py26] commands = {[general]commands}