Support python 3

Signed-off-by: Daniel Nephin <dnephin@gmail.com>
This commit is contained in:
Daniel Nephin 2014-08-19 17:36:46 -04:00
commit 809443d6d0
23 changed files with 128 additions and 85 deletions

View file

@ -48,8 +48,11 @@ tests_require = [
]
if sys.version_info < (2, 7):
if sys.version_info < (2, 6):
tests_require.append('unittest2')
if sys.version_info[:1] < (3,):
tests_require.append('pyinstaller')
tests_require.append('mock >= 1.0.1')
setup(