-
Notifications
You must be signed in to change notification settings - Fork 59
Description
Currently there are two items in the pinax-messages that are depreciated in Django 4.0/4.1.
/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/django/apps/registry.py:91: RemovedInDjango41Warning: 'pinax.messages' defines default_app_config = 'pinax.messages.apps.AppConfig'. Django now detects this configuration automatically. You can remove default_app_config.
app_config = AppConfig.create(entry)
/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/pinax/messages/signals.py:3: RemovedInDjango40Warning: The providing_args argument is deprecated. As it is purely documentational, it has no replacement. If you rely on this argument as documentation, you can move the text to a code comment or docstring.
message_sent = Signal(providing_args=["message", "thread", "reply"])
System check identified no issues (0 silenced).
Can someone update the code to make this package work with 4.0?