From e6f82438d4e3750e8d299bfd79dac98eebe9f1e0 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Mon, 9 Jan 2023 09:03:38 +0100 Subject: Refs #32365 -- Removed support for pytz timezones per deprecation timeline. --- django/conf/global_settings.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'django/conf/global_settings.py') diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index 411a5a4fe2..6d4ea3db5c 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -43,11 +43,6 @@ TIME_ZONE = "America/Chicago" # If you set this to True, Django will use timezone-aware datetimes. USE_TZ = True -# RemovedInDjango50Warning: It's a transitional setting helpful in migrating -# from pytz tzinfo to ZoneInfo(). Set True to continue using pytz tzinfo -# objects during the Django 4.x release cycle. -USE_DEPRECATED_PYTZ = False - # Language code for this installation. All choices can be found here: # http://www.i18nguy.com/unicode/language-identifiers.html LANGUAGE_CODE = "en-us" -- cgit v1.3