worthwhile / django-herald

A Django messaging library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot install herald without first installing django

jproffitt opened this issue · comments

It is impossible to install herald in in an environment that does not have django installed yet. This is because setup.py imports herald.__version__ which then imports from django.utils.module_loading import autodiscover_modules.

I think all we need to do is move the django import down inside the autodiscover function.