bradleyg / django-s3direct

Directly upload files to S3 compatible services with Django.
MIT License
653 stars 234 forks source link

Upgraded to work with Django 4.0 #238

Closed jsayles closed 2 years ago

jsayles commented 2 years ago

As of Django 3.0 urlunquote_plus was deprecated in favour of urllib.parse.unquote_plus and as of 4.0 the old method was removed. This change and updating urls.py to use django.urls.path was all that was needed to get this code working under Django 4.0. I also merged all the open dependabot branches while I was at it.

dtcooper commented 2 years ago

Using this with success! +1

jsayles commented 2 years ago

Tests fail on Python2 which is no longer supported.

dtcooper commented 2 years ago

@bradleyg Any update on whether this can be merged & released to support Django 4.0?

bradleyg commented 2 years ago

thanks!