File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 44- 3.6
55- 3.7
66- 3.8
7+ - 3.9
78install :
89- python setup.py develop
910before_script :
@@ -19,7 +20,7 @@ notifications:
1920jobs :
2021 include :
2122 - stage : PyPI and GitHub release
22- python : 3.8
23+ python : 3.9
2324 deploy :
2425 - provider : releases
2526 api_key :
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def _new_func(*args, **kwargs):
1818 argument = kwargs [arg ]
1919 LOGGER .debug (argument )
2020 return func (* args , ** kwargs )
21- except KeyError :
22- raise IllegalArgumentException (err_msg )
21+ except KeyError as ke_except :
22+ raise IllegalArgumentException (err_msg ) from ke_except
2323 return _new_func
2424 return _wrapper
Original file line number Diff line number Diff line change 1111
1212setup (
1313 name = 'jolokia' ,
14- version = '0.3.1 ' ,
14+ version = '0.3.2 ' ,
1515 description = 'A Python Jolokia client' ,
1616 long_description = long_description ,
1717 url = 'https://github.com/wbrefvem/python-jolokia' ,
3333 'Programming Language :: Python :: 3.3' ,
3434 'Programming Language :: Python :: 3.4' ,
3535 'Programming Language :: Python :: 3.5' ,
36+ 'Programming Language :: Python :: 3.6' ,
37+ 'Programming Language :: Python :: 3.7' ,
38+ 'Programming Language :: Python :: 3.8' ,
39+ 'Programming Language :: Python :: 3.9' ,
3640 ],
3741
3842 keywords = 'jolokia http jmx' ,
You can’t perform that action at this time.
0 commit comments