-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
Description
Im April 2023 soll Django 4.2 LTS erscheinen: https://www.djangoproject.com/download/#supported-versions
Ich habe einen kurzen Test mit 4.0.5 gewagt - scheint (mit aktualisiertem Python) erstmal reibungslos zu funktionieren, mit einigen neuen Warnings:
../../../usr/local/lib/python3.11/site-packages/django/conf/__init__.py:206
/usr/local/lib/python3.11/site-packages/django/conf/__init__.py:206: RemovedInDjango50Warning: The default value of USE_TZ will change from False to True in Django 5.0. Set USE_TZ to False in your project settings if you want to keep the current default behavior.
warnings.warn(
../../../usr/local/lib/python3.11/site-packages/django/conf/__init__.py:229
/usr/local/lib/python3.11/site-packages/django/conf/__init__.py:229: RemovedInDjango50Warning: The USE_L10N setting is deprecated. Starting with Django 5.0, localized formatting of data will always be enabled. For example Django will display numbers and dates using the format of the current locale.
warnings.warn(USE_L10N_DEPRECATED_MSG, RemovedInDjango50Warning)