Update places where Django 2.2 is mentioned to 3.0

This commit is contained in:
Bruno Alla 2020-02-29 16:20:00 +00:00
parent 465bc9c222
commit 38a0a2ecf8
3 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ production-ready Django projects quickly.
Features Features
--------- ---------
* For Django 2.2 * For Django 3.0
* Works with Python 3.7 * Works with Python 3.7
* Renders Django projects with 100% starting test coverage * Renders Django projects with 100% starting test coverage
* Twitter Bootstrap_ v4 (`maintained Foundation fork`_ also available) * Twitter Bootstrap_ v4 (`maintained Foundation fork`_ also available)

View File

@ -10,7 +10,7 @@ except ImportError:
# Our version ALWAYS matches the version of Django we support # Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag. # If Django has a new release, we branch, tag, then update this setting after the tag.
version = "2.2.1" version = "3.0.3"
if sys.argv[-1] == "tag": if sys.argv[-1] == "tag":
os.system(f'git tag -a {version} -m "version {version}"') os.system(f'git tag -a {version} -m "version {version}"')
@ -34,7 +34,7 @@ setup(
classifiers=[ classifiers=[
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Environment :: Console", "Environment :: Console",
"Framework :: Django :: 2.2", "Framework :: Django :: 3.0",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Natural Language :: English", "Natural Language :: English",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",

View File

@ -226,7 +226,7 @@ X_FRAME_OPTIONS = "DENY"
EMAIL_BACKEND = env( EMAIL_BACKEND = env(
"DJANGO_EMAIL_BACKEND", default="django.core.mail.backends.smtp.EmailBackend" "DJANGO_EMAIL_BACKEND", default="django.core.mail.backends.smtp.EmailBackend"
) )
# https://docs.djangoproject.com/en/2.2/ref/settings/#email-timeout # https://docs.djangoproject.com/en/dev/ref/settings/#email-timeout
EMAIL_TIMEOUT = 5 EMAIL_TIMEOUT = 5
# ADMIN # ADMIN