You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Django 4 removes django.conf.urls.url which was being used in the django-drf-filepond URL mappings.
This needs to be fixed by moving to django.urls.path or re_path. However, switching to these will remove compatibility with Python 2.7. Since Python 2.7 support is not yet officially deprecated, this should be done in v0.5.0 with a view to that being the last version providing py2.7 support.
This was fixed in #66 with python 2.7 support re-introduced with the updates in #67.
The text was updated successfully, but these errors were encountered:
Django 4 removes
django.conf.urls.url
which was being used in the django-drf-filepond URL mappings.This needs to be fixed by moving to
django.urls.path
orre_path
. However, switching to these will remove compatibility with Python 2.7. Since Python 2.7 support is not yet officially deprecated, this should be done in v0.5.0 with a view to that being the last version providing py2.7 support.This was fixed in #66 with python 2.7 support re-introduced with the updates in #67.
The text was updated successfully, but these errors were encountered: