https://docs.djangoproject.com/en/4.0/internals/deprecation/#deprecation-
removed-in-3-0
The django.db.backends.postgresql_psycopg2 module will be removed.
VERSION = (4, 1, 0, "beta", 1)
{{{
function load_backend()
...
# rows 100 - 110
if backend_name == "django.db.backends.postgresql_psycopg2":
backend_name = "django.db.backends.postgresql"
}}}
i understand, that means "backwards compatibility". But not in this case:
renamed in 1.9, removed in 3.xx. It may no longer be needed in 4.xx, the
third major generation of Django after 1.9.
--
Ticket URL: <https://code.djangoproject.com/ticket/33825>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.