-
Notifications
You must be signed in to change notification settings - Fork 11
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
Remove pinning on django-storages[boto3] #1717
Conversation
While everything here seems to make sense, have you been able to properly test it? Since locally it wouldn't actually change anything, correct? |
Right. I'll make sure to do a test upload in staging once this is deployed there. |
The bug that mandated pinning this dependency has been fixed in the latest release.
847c9e4
to
365e1f3
Compare
(just rebasing so the dandi-cli tests pass) |
I uploaded some assets to staging using the CLI after deploying this and everything appears to work fine, so this should be fine to deploy to production the next time we cut a release. |
🚀 PR was released in |
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
This completes #1717, to use the latest django-storages version.
The bug that mandated pinning this dependency (#1691) has been fixed in the latest release of
django-storages
(here's the changelog entry), so we can remove the pinning.Additionally, the latest minor release of
django-storages
also deprecatesstorages.backends.s3boto3.S3Boto3Storage
in favor ofstorages.backends.s3.S3Storage
, as well as changes the install extra from[boto3]
to[s3]
, (changelog entry), so I went ahead and made those changes here as well.