An email newsletter application for the Django web application framework, including an extended admin interface, web (un)subscription, dynamic e-mail templates, an archive and HTML email support.
Since importlib is available since Python 3.8 and django-newsletter supports Python 3.7, I included a conditional import which defaults to pkg_resources.
To address this deprecation warning https://github.com/jazzband/django-newsletter/issues/390 I changed from
pkg_resources
toimportlib
.Since
importlib
is available since Python 3.8 and django-newsletter supports Python 3.7, I included a conditional import which defaults topkg_resources
.