-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make app compatible with django 3 changes #24
Comments
Additional changes required for Django 4 in the storage file.
|
Thanks @nKandel. I think this repo is overdue to be marked as read-only. I'll see if I can write a small migration document from this library to django-storages, which has received ongoing maintenance. The biggest change between I would recommend using |
Hi @jacobwegner. Thank you very much for the prompt reply. A migration guideline would be a huge help. For someone who isn't familiar with the django-storages and django-gpac-storage internal codebases, it would provide the needed clarity. |
need to update six import location in order to make it compatible with django 3.
replace
from django.utils.six.moves.urllib import parse as urlparse
withfrom six.moves.urllib import parse as urlparse
at storage fileline from django 3 release page:
The text was updated successfully, but these errors were encountered: