diff --git a/.travis.yml b/.travis.yml index b0370d1..d5bf2a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - 2.7 #- 3.2 - 3.3 + - 3.4 install: pip install -r test-requirements.txt script: - nosetests --with-cov --cover-package=ddt diff --git a/ddt.py b/ddt.py index c7c447b..135c297 100644 --- a/ddt.py +++ b/ddt.py @@ -5,7 +5,7 @@ import sys from functools import wraps -__version__ = '0.8.0' +__version__ = '0.8.1' # These attributes will not conflict with any real python attribute # They are added to the decorated test method and processed later diff --git a/setup.py b/setup.py index 5215fff..881ec3d 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,11 @@ 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Topic :: Software Development :: Testing', ], ) - diff --git a/tox.ini b/tox.ini index 6646ded..b8c1edf 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py33 +envlist = py27, py33, py34 [testenv] deps =