Describe the bug
django-scim2 is incompatible with django v4.0 which was released Dec 7, 2021.
The code in src/django_scim/models.py is using the API ugettext_lazy (see line 5).
This API was deprecated in django v3.0 (Release notes) and should be replaced with gettext_lazy().
The same function is used in demo/app/models.py in line 4.
Describe the bug django-scim2 is incompatible with django v4.0 which was released Dec 7, 2021.
The code in
src/django_scim/models.py
is using the APIugettext_lazy
(see line 5). This API was deprecated in django v3.0 (Release notes) and should be replaced withgettext_lazy()
.The same function is used in
demo/app/models.py
in line 4.