Hacker News new | ask | show | jobs
by echoangle 309 days ago
For me, the latest django defaults to "TIME_ZONE = 'UTC'" in the settings.py.
2 comments

"settings.py" is your local configuration. The global default is still Chicago:

* https://github.com/django/django/blob/main/django/conf/globa...

settings.py is automatically generated when creating a new project and overrides this global default. If you create a new django project and run it, it uses UTC.
I wonder what version they swapped it.