I get this error, Your version of greenlet (0.3.1) is too old (required >= 0.3.2) when I am trying to run ssbench openstack-swift benchmarking tool.
I updated the greenlet to the version 0.4.5 using sudo pip install --upgrade greenlet
but it still give this error. I can see the greenlet.so in the distribution folder which is the latest.
Furthermore, I wrote below to check version,
import greenlet
greenlet_version = getattr(greenlet, '__version__', None)
print(str(greenlet_version))
This also returned 0.3.1.
I am confused why this happens?