From a63f51ef2f7a2b62b9f01e2eeb98cf261d8daea7 Mon Sep 17 00:00:00 2001 From: zachary-delagrange Date: Tue, 21 Sep 2021 09:31:48 -0400 Subject: [PATCH 1/2] remove use_2to3 --- setup.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/setup.py b/setup.py index 13d6157..8edd125 100755 --- a/setup.py +++ b/setup.py @@ -1,9 +1,4 @@ from setuptools import setup, Command -import sys - -kw = {} -if sys.version_info >= (3,): - kw['use_2to3'] = True class PyTest(Command): @@ -44,5 +39,4 @@ def run(self): 'Programming Language :: Python :: 3.3', 'Topic :: Software Development :: Libraries :: Java Libraries', ], - **kw ) From 431389bc673e6184632a212ea155b69b9ddda104 Mon Sep 17 00:00:00 2001 From: zachary-delagrange Date: Tue, 21 Sep 2021 10:04:57 -0400 Subject: [PATCH 2/2] bump minor version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8edd125..51e97c3 100755 --- a/setup.py +++ b/setup.py @@ -19,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",