Skip to content

Commit

Permalink
Updated jsonrpclib dependency
Browse files Browse the repository at this point in the history
jsonrpclib > 0.2.5 won't support Python 2.6 anymore
  • Loading branch information
tcalmant committed Mar 10, 2015
1 parent 658f77c commit a80e666
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -91,7 +91,8 @@ def read(fname):
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
requires=['importlib'] if sys.version_info < (2, 7) else [],
install_requires=['jsonrpclib-pelix >= 0.2.1'],
install_requires=['jsonrpclib-pelix == 0.2.5']
if sys.version_info < (2, 7) else ['jsonrpclib-pelix >= 0.2.5'],
tests_require=['unittest2'] if sys.version_info < (2, 7) else [],
extras_require={
'MQTT': ['paho-mqtt'],
Expand Down

0 comments on commit a80e666

Please sign in to comment.