When using the package in Python 3.x, I noticed dependencies don't get correctly installed.
I ended up pinpointing the issue to the usage of filter() in setup.py, which in Python 3.x returns a filter object which setuptools doesn't seem to like..
This fixes it by casting explicitly to list.
When using the package in Python 3.x, I noticed dependencies don't get correctly installed. I ended up pinpointing the issue to the usage of filter() in setup.py, which in Python 3.x returns a filter object which setuptools doesn't seem to like.. This fixes it by casting explicitly to list.