I am using the latest version of bonobo with Python 3.10.2 or 3.10.1 (tried both) and the issue is with the processoprs.py file not being updated to handle the importing of collections. The fix is the following code:
change:
from collections import Iterable
to:
from collections.abc import Iterable