@@ -141,7 +141,7 @@ def RUNTIME_ENVIRONMENT():
141141# SSL terminates before getting to Django, and NGINX adds this header to indicate
142142# if the original request was secure or not
143143#
144- # See https://docs.djangoproject.com/en/5.0 /ref/settings/#secure-proxy-ssl-header
144+ # See https://docs.djangoproject.com/en/stable /ref/settings/#secure-proxy-ssl-header
145145if not DEBUG :
146146 SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO" , "https" )
147147
@@ -226,14 +226,14 @@ def RUNTIME_ENVIRONMENT():
226226
227227USE_I18N = True
228228
229- # See https://docs.djangoproject.com/en/5.0 /ref/settings/#std-setting-TIME_ZONE
229+ # See https://docs.djangoproject.com/en/stable /ref/settings/#std-setting-TIME_ZONE
230230# > Note that this isn’t necessarily the time zone of the server.
231231# > When USE_TZ is True, this is the default time zone that Django will use to display datetimes in templates
232232# > and to interpret datetimes entered in forms.
233233TIME_ZONE = "America/Los_Angeles"
234234USE_TZ = True
235235
236- # https://docs.djangoproject.com/en/5.0 /topics/i18n/formatting/#creating-custom-format-files
236+ # https://docs.djangoproject.com/en/stable /topics/i18n/formatting/#creating-custom-format-files
237237FORMAT_MODULE_PATH = [
238238 "benefits.locale" ,
239239]
@@ -390,7 +390,7 @@ def RUNTIME_ENVIRONMENT():
390390REQUESTS_TIMEOUT = (REQUESTS_CONNECT_TIMEOUT , REQUESTS_READ_TIMEOUT )
391391
392392# Email
393- # https://docs.djangoproject.com/en/5.2 /ref/settings/#email-backend
393+ # https://docs.djangoproject.com/en/stable /ref/settings/#email-backend
394394# https://github.com/retech-us/django-azure-communication-email
395395AZURE_COMMUNICATION_CONNECTION_STRING = os .environ .get ("AZURE_COMMUNICATION_CONNECTION_STRING" )
396396
@@ -401,5 +401,5 @@ def RUNTIME_ENVIRONMENT():
401401 EMAIL_BACKEND = "django.core.mail.backends.filebased.EmailBackend"
402402 EMAIL_FILE_PATH = os .path .join (STORAGE_DIR , ".sent_emails" )
403403
404- # https://docs.djangoproject.com/en/5.2 /ref/settings/#default-from-email
404+ # https://docs.djangoproject.com/en/stable /ref/settings/#default-from-email
405405DEFAULT_FROM_EMAIL = os .environ .get ("DEFAULT_FROM_EMAIL" , "noreply@example.calitp.org" )
0 commit comments