8👍
✅
importlib which was added in Python 2.7/3.1, I believe. You can download a port for pyton 2.5 here:
Also check the setup.cfg
for celery near the bottom and make sure all the other requirements are met (toward the bottom of the script).
👤ars
1👍
importlib was added to Python in version 3.1, and then backported to Python 2.7. Third party backports are available on PyPI.
Also note that ‘backported to 2.7’ doesn’t imply that all versions after 2.7 will have importlib. Python 3.0, I believe, does not have importlib.
- [Django]-Django annotate a Boolean if field value is in an external list
- [Django]-Django Template: Use translation in default_if_none
- [Django]-Adding a **kwarg to a class
- [Django]-Django: is importing a view from a module slower than including it in the main views.py file?
Source:stackexchange.com