Skip to content

Commit

Permalink
State support for Python3 in trove classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
txels committed Dec 13, 2014
1 parent 9b087ce commit 14c0314
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ddt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
)

2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py33
envlist = py27, py33, py34

[testenv]
deps =
Expand Down

0 comments on commit 14c0314

Please sign in to comment.