Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
from setuptools import setup, Command
import sys

kw = {}
if sys.version_info >= (3,):
kw['use_2to3'] = True


class PyTest(Command):
Expand All @@ -24,7 +19,7 @@ def run(self):
raise SystemExit(errno)

setup(name='pyjolokia',
version='0.3.1',
version='0.3.2',
description='Pure Python based Jolokia client',
author='Colin Wood',
license="Apache License Version 2.0",
Expand All @@ -44,5 +39,4 @@ def run(self):
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Java Libraries',
],
**kw
)