After upgrading django-ses to v4.2.0, importing anything from djangoses.signals (e.g. `from djangoses.signals import bouncereceived, complaintreceived`) raised: RuntimeError: Model class djangoses.models.SESStat doesn't declare an explicit applabel and isn't in an application in INSTALLEDAPPS. The project deliberately did not add djangoses to INSTALLED_APPS because it did not use the SES Sending Stats feature, and adding it would trigger unwanted migrations. The regression came from the blacklist feature in v4.2.0, which imported models into signals.py (and utils.py via views), forcing the app registry to load.