]> git.phdru.name Git - ppu.git/commitdiff
Python: 2.6, 2.7 and 3.3+
authorOleg Broytman <phd@phdru.name>
Sat, 15 Apr 2017 18:59:37 +0000 (21:59 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 15 Apr 2017 19:08:33 +0000 (22:08 +0300)
setup.py
tox.ini

index a3050ec2e3a1aa59d7307b6ae27e2b5bcad109e7..c789abeee184c7cca45cac5d353e5f618c543eea 100755 (executable)
--- 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 a69b545b4b9947583d377071ec8a119a83a4d5e6..18cfb293ce66b152279606911d1b64fa647f68bd 100644 (file)
--- 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}