I noticed when starting to test out Django 4.1 that Django is now warning:
django_s3_storage/storage.py:28: RemovedInDjango50Warning: The django.utils.timezone.utc alias is deprecated. Please update your code to use datetime.timezone.utc instead.
For reference, prior to Django 4, django.utils.timezone.utc was just an alias to pytz.utc and from Django 4 onward it is an alias to datetime.timezone.utc
I noticed when starting to test out Django 4.1 that Django is now warning:
For reference, prior to Django 4,
django.utils.timezone.utc
was just an alias topytz.utc
and from Django 4 onward it is an alias todatetime.timezone.utc