From bb54806dcf306650fc857788b37d271d698949ac Mon Sep 17 00:00:00 2001 From: medmunds Date: Wed, 19 Apr 2017 12:49:02 -0700 Subject: [PATCH] Tests: update settings for Django 1.11 final Regenerate test settings.py using released Django 1.11. (Had version from alpha Django 1.11a1. Only comments changed.) --- tests/test_settings/settings_1_11.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/test_settings/settings_1_11.py b/tests/test_settings/settings_1_11.py index 5f87ea5..0b51515 100644 --- a/tests/test_settings/settings_1_11.py +++ b/tests/test_settings/settings_1_11.py @@ -1,13 +1,13 @@ """ Django settings for Anymail tests. -Generated by 'django-admin startproject' using Django 1.11a1. +Generated by 'django-admin startproject' using Django 1.11. For more information on this file, see -https://docs.djangoproject.com/en/dev/topics/settings/ +https://docs.djangoproject.com/en/1.11/topics/settings/ For the full list of settings and their values, see -https://docs.djangoproject.com/en/dev/ref/settings/ +https://docs.djangoproject.com/en/1.11/ref/settings/ """ import os @@ -17,7 +17,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/ +# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'NOT_FOR_PRODUCTION_USE' @@ -72,7 +72,7 @@ WSGI_APPLICATION = 'tests.wsgi.application' # Database -# https://docs.djangoproject.com/en/dev/ref/settings/#databases +# https://docs.djangoproject.com/en/1.11/ref/settings/#databases DATABASES = { 'default': { @@ -83,7 +83,7 @@ DATABASES = { # Password validation -# https://docs.djangoproject.com/en/dev/ref/settings/#auth-password-validators +# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { @@ -102,7 +102,7 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization -# https://docs.djangoproject.com/en/dev/topics/i18n/ +# https://docs.djangoproject.com/en/1.11/topics/i18n/ LANGUAGE_CODE = 'en-us' @@ -116,6 +116,6 @@ USE_TZ = True # Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/dev/howto/static-files/ +# https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/'