From d0e5c4b3b61e64454498344d47476235ae6b3946 Mon Sep 17 00:00:00 2001 From: Chris Franklin Date: Thu, 12 Oct 2017 17:36:44 +0000 Subject: [PATCH 01/22] Fix comments and silence PEP8 lambda warnings in config module. (#1357) --- {{cookiecutter.project_slug}}/config/settings/base.py | 2 +- {{cookiecutter.project_slug}}/config/settings/local.py | 4 ++-- {{cookiecutter.project_slug}}/config/settings/production.py | 6 +++--- {{cookiecutter.project_slug}}/config/settings/test.py | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/{{cookiecutter.project_slug}}/config/settings/base.py b/{{cookiecutter.project_slug}}/config/settings/base.py index 10261781..2ce69767 100644 --- a/{{cookiecutter.project_slug}}/config/settings/base.py +++ b/{{cookiecutter.project_slug}}/config/settings/base.py @@ -1,5 +1,5 @@ """ -Django settings for {{cookiecutter.project_name}} project. +Base settings for {{cookiecutter.project_name}} project. For more information on this file, see https://docs.djangoproject.com/en/dev/topics/settings/ diff --git a/{{cookiecutter.project_slug}}/config/settings/local.py b/{{cookiecutter.project_slug}}/config/settings/local.py index efbaf30b..67a7074a 100644 --- a/{{cookiecutter.project_slug}}/config/settings/local.py +++ b/{{cookiecutter.project_slug}}/config/settings/local.py @@ -1,9 +1,9 @@ """ -Local settings +Local settings for {{cookiecutter.project_name}} project. - Run in Debug mode {% if cookiecutter.use_mailhog == 'y' and cookiecutter.use_docker == 'y' %} -- Use mailhog for emails +- Use mailhog for emails via Docker {% elif cookiecutter.use_mailhog == 'y' and cookiecutter.use_docker == 'n' %} - Use mailhog for emails {% else %} diff --git a/{{cookiecutter.project_slug}}/config/settings/production.py b/{{cookiecutter.project_slug}}/config/settings/production.py index 7ea188ce..cc518644 100644 --- a/{{cookiecutter.project_slug}}/config/settings/production.py +++ b/{{cookiecutter.project_slug}}/config/settings/production.py @@ -1,5 +1,5 @@ """ -Production Configurations +Production settings for {{cookiecutter.project_name}} project. {% if cookiecutter.use_whitenoise == 'y' -%} - Use WhiteNoise for serving static files{% endif %} @@ -119,8 +119,8 @@ DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage' {% else %} # See:http://stackoverflow.com/questions/10390244/ from storages.backends.s3boto3 import S3Boto3Storage -StaticRootS3BotoStorage = lambda: S3Boto3Storage(location='static') -MediaRootS3BotoStorage = lambda: S3Boto3Storage(location='media') +StaticRootS3BotoStorage = lambda: S3Boto3Storage(location='static') # noqa +MediaRootS3BotoStorage = lambda: S3Boto3Storage(location='media') # noqa DEFAULT_FILE_STORAGE = 'config.settings.production.MediaRootS3BotoStorage' MEDIA_URL = 'https://s3.amazonaws.com/%s/media/' % AWS_STORAGE_BUCKET_NAME diff --git a/{{cookiecutter.project_slug}}/config/settings/test.py b/{{cookiecutter.project_slug}}/config/settings/test.py index 0cd3e665..d973428d 100644 --- a/{{cookiecutter.project_slug}}/config/settings/test.py +++ b/{{cookiecutter.project_slug}}/config/settings/test.py @@ -1,8 +1,8 @@ -''' -Test settings +""" +Test settings for {{cookiecutter.project_name}} project. - Used to run tests fast on the continuous integration server and locally -''' +""" from .base import * # noqa From 6364da8b8ab58e1bb92d804f44c60fff09060a05 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 15 Oct 2017 12:37:16 -0700 Subject: [PATCH 02/22] Update cookiecutter from 1.5.1 to 1.6.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 90064660..cc3c9099 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -cookiecutter==1.5.1 +cookiecutter==1.6.0 flake8==3.4.1 # pyup: != 2.6.0 sh==1.12.14 binaryornot==0.4.4 From 7e5dde149f15faf7c54c3133a7f1198587f08051 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Mon, 16 Oct 2017 17:28:51 +0200 Subject: [PATCH 03/22] Update pytest-cookies from 0.2.0 to 0.3.0 (#1360) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cc3c9099..5affb9c8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,4 +8,4 @@ pytest==3.2.3 pycodestyle==2.3.1 pyflakes==1.6.0 tox==2.9.1 -pytest-cookies==0.2.0 +pytest-cookies==0.3.0 From ba6756f1073af265d2c29c8c75156b61bcc1616a Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Mon, 16 Oct 2017 17:36:56 +0200 Subject: [PATCH 04/22] Update pillow from 4.2.1 to 4.3.0 (#1352) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 960522a8..07d441be 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -22,7 +22,7 @@ django-crispy-forms==1.6.1 django-model-utils==3.0.0 # Images -Pillow==4.2.1 +Pillow==4.3.0 # Password storage argon2-cffi==16.3.0 From d5d7b33fdea235800d5c541567b5bc3ee6674f66 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Mon, 16 Oct 2017 17:42:13 +0200 Subject: [PATCH 05/22] Update opbeat from 3.5.2 to 3.5.3 (#1359) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index e6496cb2..751236f4 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -35,5 +35,5 @@ raven==6.2.1 {% if cookiecutter.use_opbeat == "y" -%} # Opbeat agent for performance monitoring # ----------------------------------------- -opbeat==3.5.2 +opbeat==3.5.3 {%- endif %} From 768f528bb9b011278ac6354b8b5cced4cab2622a Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Mon, 16 Oct 2017 18:17:23 +0200 Subject: [PATCH 06/22] Update django-extensions from 1.9.1 to 1.9.6 (#1364) --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 015a8235..f9052e87 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -5,7 +5,7 @@ coverage==4.4.1 django-coverage-plugin==1.5.0 Sphinx==1.6.4 -django-extensions==1.9.1 +django-extensions==1.9.6 Werkzeug==0.12.2 django-test-plus==1.0.18 factory-boy==2.9.2 From e363d7c84ade1ffd11d8127d88e1a1d298f84644 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 17 Oct 2017 18:21:22 +0200 Subject: [PATCH 07/22] Update django-crispy-forms from 1.6.1 to 1.7.0 (#1366) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 07d441be..bd624a0d 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -16,7 +16,7 @@ whitenoise==3.3.1 # Forms -django-crispy-forms==1.6.1 +django-crispy-forms==1.7.0 # Models django-model-utils==3.0.0 From fc339eac2ef72add2a90e1b2964277facf5ffb4d Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 24 Oct 2017 20:12:37 +0200 Subject: [PATCH 08/22] Update sphinx from 1.6.4 to 1.6.5 (#1369) --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index f9052e87..f11824cc 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -4,7 +4,7 @@ coverage==4.4.1 django-coverage-plugin==1.5.0 -Sphinx==1.6.4 +Sphinx==1.6.5 django-extensions==1.9.6 Werkzeug==0.12.2 django-test-plus==1.0.18 From 26300237c915ecef6a7240a5792d66eacda9a373 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 24 Oct 2017 20:13:10 +0200 Subject: [PATCH 09/22] Update flake8 to 3.5.0 (#1370) * Update flake8 from 3.4.1 to 3.5.0 * Update flake8 from 3.4.1 to 3.5.0 --- requirements.txt | 2 +- {{cookiecutter.project_slug}}/requirements/test.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5affb9c8..5e6edecd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ cookiecutter==1.6.0 -flake8==3.4.1 # pyup: != 2.6.0 +flake8==3.5.0 # pyup: != 2.6.0 sh==1.12.14 binaryornot==0.4.4 diff --git a/{{cookiecutter.project_slug}}/requirements/test.txt b/{{cookiecutter.project_slug}}/requirements/test.txt index 8d21ed8b..a1298d04 100644 --- a/{{cookiecutter.project_slug}}/requirements/test.txt +++ b/{{cookiecutter.project_slug}}/requirements/test.txt @@ -8,7 +8,7 @@ psycopg2==2.7.3.1 {%- endif %} coverage==4.4.1 -flake8==3.4.1 # pyup: != 2.6.0 +flake8==3.5.0 # pyup: != 2.6.0 django-test-plus==1.0.18 factory-boy==2.9.2 django-coverage-plugin==1.5.0 From 531f19553b8d6fa40692c5481612c6bda1b7156c Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 24 Oct 2017 13:13:08 -0700 Subject: [PATCH 10/22] Update psycopg2 from 2.7.3.1 to 2.7.3.2 --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 751236f4..532b6ac3 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -6,7 +6,7 @@ # Python-PostgreSQL Database Adapter # Assuming Windows is used locally, and *nix -- in production. # ------------------------------------------------------------ -psycopg2==2.7.3.1 +psycopg2==2.7.3.2 {%- endif %} # WSGI Handler From f71a5611191bd767d7ebf445d08a9ac32d09d56f Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 24 Oct 2017 13:13:10 -0700 Subject: [PATCH 11/22] Update psycopg2 from 2.7.3.1 to 2.7.3.2 --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index bd624a0d..3f692cee 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -36,7 +36,7 @@ django-allauth==0.33.0 # from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg {% else %} # Python-PostgreSQL Database Adapter -psycopg2==2.7.3.1 +psycopg2==2.7.3.2 {%- endif %} # Unicode slugification From dc4833af941d30d2236e1227ee441d05427ac4f0 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 24 Oct 2017 13:13:12 -0700 Subject: [PATCH 12/22] Update psycopg2 from 2.7.3.1 to 2.7.3.2 --- {{cookiecutter.project_slug}}/requirements/test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/test.txt b/{{cookiecutter.project_slug}}/requirements/test.txt index a1298d04..f5272faf 100644 --- a/{{cookiecutter.project_slug}}/requirements/test.txt +++ b/{{cookiecutter.project_slug}}/requirements/test.txt @@ -4,7 +4,7 @@ {% if cookiecutter.windows == 'y' -%} # Python-PostgreSQL Database Adapter # If using Win for dev, this assumes Unix in test/prod -psycopg2==2.7.3.1 +psycopg2==2.7.3.2 {%- endif %} coverage==4.4.1 From 931e01876cfbd86ab0e27b13b1554e476d494bd8 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 24 Oct 2017 13:13:22 -0700 Subject: [PATCH 13/22] Update django-test-plus from 1.0.18 to 1.0.19 --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index f11824cc..2d720c8a 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -7,7 +7,7 @@ django-coverage-plugin==1.5.0 Sphinx==1.6.5 django-extensions==1.9.6 Werkzeug==0.12.2 -django-test-plus==1.0.18 +django-test-plus==1.0.19 factory-boy==2.9.2 django-debug-toolbar==1.8 From e01827c2cbb8265c37f2b12afcead5155b2eb86f Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 24 Oct 2017 13:13:25 -0700 Subject: [PATCH 14/22] Update django-test-plus from 1.0.18 to 1.0.19 --- {{cookiecutter.project_slug}}/requirements/test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/test.txt b/{{cookiecutter.project_slug}}/requirements/test.txt index a1298d04..07e71def 100644 --- a/{{cookiecutter.project_slug}}/requirements/test.txt +++ b/{{cookiecutter.project_slug}}/requirements/test.txt @@ -9,7 +9,7 @@ psycopg2==2.7.3.1 coverage==4.4.1 flake8==3.5.0 # pyup: != 2.6.0 -django-test-plus==1.0.18 +django-test-plus==1.0.19 factory-boy==2.9.2 django-coverage-plugin==1.5.0 From f26a9fb9feb38f88a3cdafb47731adbdcfcc1dc4 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 28 Oct 2017 21:53:11 +0200 Subject: [PATCH 15/22] Update django-anymail from 1.0 to 1.1 (#1375) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 532b6ac3..5597d4da 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -24,7 +24,7 @@ Collectfast==0.5.2 # Email backends for Mailgun, Postmark, SendGrid and more # ------------------------------------------------------- -django-anymail==1.0 +django-anymail==1.1 {% if cookiecutter.use_sentry_for_error_reporting == "y" -%} # Raven is the Sentry client From 6f16fa4e7451a6a456fa3f2211b78d598f46b60a Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 29 Oct 2017 22:21:09 +0100 Subject: [PATCH 16/22] Update django-allauth from 0.33.0 to 0.34.0 (#1377) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 3f692cee..bde53298 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -29,7 +29,7 @@ argon2-cffi==16.3.0 # For user registration, either via email or social # Well-built with regular release cycles! -django-allauth==0.33.0 +django-allauth==0.34.0 {% if cookiecutter.windows == 'y' -%} # On Windows, you must download/install psycopg2 manually From 6716bb590d3534b66f451e57273518729e3a4479 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 30 Oct 2017 10:54:45 -0700 Subject: [PATCH 17/22] Update pytz from 2017.2 to 2017.3 --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index bde53298..00e86bf4 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -43,7 +43,7 @@ psycopg2==2.7.3.2 awesome-slugify==1.6.5 # Time zones support -pytz==2017.2 +pytz==2017.3 # Redis support django-redis==4.8.0 From b718911012bada5f76cf15045c8cf6e8b5e4dc3b Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 31 Oct 2017 10:26:40 +0100 Subject: [PATCH 18/22] Update raven from 6.2.1 to 6.3.0 (#1378) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 5597d4da..30ba6b9d 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -29,7 +29,7 @@ django-anymail==1.1 {% if cookiecutter.use_sentry_for_error_reporting == "y" -%} # Raven is the Sentry client # -------------------------- -raven==6.2.1 +raven==6.3.0 {%- endif %} {% if cookiecutter.use_opbeat == "y" -%} From d40c5574a4217ed3a23e49f79f87ffd34a11f6dd Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 31 Oct 2017 06:53:43 -0700 Subject: [PATCH 19/22] Update django-test-plus from 1.0.19 to 1.0.20 --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 2d720c8a..76049363 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -7,7 +7,7 @@ django-coverage-plugin==1.5.0 Sphinx==1.6.5 django-extensions==1.9.6 Werkzeug==0.12.2 -django-test-plus==1.0.19 +django-test-plus==1.0.20 factory-boy==2.9.2 django-debug-toolbar==1.8 From 0780d15ede28b22cf468117d3e14bb3aedb74eee Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Tue, 31 Oct 2017 06:53:44 -0700 Subject: [PATCH 20/22] Update django-test-plus from 1.0.19 to 1.0.20 --- {{cookiecutter.project_slug}}/requirements/test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/test.txt b/{{cookiecutter.project_slug}}/requirements/test.txt index 71765a92..063d3f63 100644 --- a/{{cookiecutter.project_slug}}/requirements/test.txt +++ b/{{cookiecutter.project_slug}}/requirements/test.txt @@ -9,7 +9,7 @@ psycopg2==2.7.3.2 coverage==4.4.1 flake8==3.5.0 # pyup: != 2.6.0 -django-test-plus==1.0.19 +django-test-plus==1.0.20 factory-boy==2.9.2 django-coverage-plugin==1.5.0 From b2fbb36b9d08de9456e8eb4f51e4e4dbf2d86fcd Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Tue, 31 Oct 2017 18:04:21 +0100 Subject: [PATCH 21/22] Update django-extensions from 1.9.6 to 1.9.7 (#1381) --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 76049363..cd89783b 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -5,7 +5,7 @@ coverage==4.4.1 django-coverage-plugin==1.5.0 Sphinx==1.6.5 -django-extensions==1.9.6 +django-extensions==1.9.7 Werkzeug==0.12.2 django-test-plus==1.0.20 factory-boy==2.9.2 From 006b8d200df82cc513572c636d15250f320a8011 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 2 Nov 2017 23:30:40 +0100 Subject: [PATCH 22/22] Update django-anymail from 1.1 to 1.2 (#1383) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 30ba6b9d..4ba9d6e0 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -24,7 +24,7 @@ Collectfast==0.5.2 # Email backends for Mailgun, Postmark, SendGrid and more # ------------------------------------------------------- -django-anymail==1.1 +django-anymail==1.2 {% if cookiecutter.use_sentry_for_error_reporting == "y" -%} # Raven is the Sentry client