From b320d7ea3e986ac1454086675c94ce6952714257 Mon Sep 17 00:00:00 2001 From: Haresh Kainth Date: Fri, 6 Dec 2024 23:44:36 +0000 Subject: [PATCH] Disable deprecated pytz usage in local settings This update sets USE_DEPRECATED_PYTZ to False in the local settings file, indicating that the application should not use the deprecated pytz library. This change ensures compatibility with future updates and promotes using more modern timezone handling libraries. --- fbr/config/settings/local.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fbr/config/settings/local.py b/fbr/config/settings/local.py index 97c194f..5576918 100644 --- a/fbr/config/settings/local.py +++ b/fbr/config/settings/local.py @@ -9,4 +9,6 @@ "cache", ] +USE_DEPRECATED_PYTZ = True + INSTALLED_APPS = BASE_APPS + INSTALLED_APPS # noqa