From 88452a2db1213bc92ab97a525a1456c615a7080a Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Tue, 16 May 2023 16:20:51 -0300 Subject: [PATCH] chore: Add USE_DEPRECATED_PYTZ to settings.py --- ietf/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ietf/settings.py b/ietf/settings.py index 81091e1f3..ca7b1e179 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -102,6 +102,8 @@ SITE_ID = 1 USE_I18N = False USE_TZ = True +USE_DEPRECATED_PYTZ = True # supported until Django 5 + # Default primary key field type to use for models that don’t have a field with primary_key=True. # In the future (relative to 4.2), the default will become 'django.db.models.BigAutoField.'