sivakumar...@bgch.co.uk
unread,Oct 31, 2015, 2:45:41 AM10/31/15Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to stompest
I am using python 3.4 and could not install even the newest version of stompest (2.1.6). Is it not supported for Python 3 yet????
I found the below piece of code in the setup.py file, i removed it and the installation was perfect, but just worried what if face any issues.
Code that i removed from setup.py :
if sys.version_info[:2] < (2, 6):
print 'stompest requires Python version 2.6 or later (%s detected).' % '.'.join(sys.version_info[:2])
sys.exit(-1)
if sys.version_info[:2] >= (3, 0):
print 'stompest is not yet compatible with Python 3 (%s detected).' % '.'.join(sys.version_info[:2])
sys.exit(-1)