mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-20 05:20:55 +03:00
This PR updates [django-anymail[mailgun]](https://pypi.org/project/django-anymail) from **4.1** to **4.2**. <details> <summary>Changelog</summary> ### 4.2 ``` ---- *2018-09-07* Features ~~~~~~~~ * **Postmark:** Support per-recipient template `merge_data` and batch sending. (Batch sending can be used with or without a template. See `docs <https://anymail.readthedocs.io/en/stable/esps/postmark/postmark-templates>`__.) Fixes ~~~~~ * **Postmark:** When using `template_id`, ignore empty subject and body. (Postmark issues an error if Django's default empty strings are used with template sends.) ``` </details> <details> <summary>Links</summary> - PyPI: https://pypi.org/project/django-anymail - Changelog: https://pyup.io/changelogs/django-anymail/ - Repo: https://github.com/anymail/django-anymail </details>
18 lines
698 B
Plaintext
18 lines
698 B
Plaintext
# PRECAUTION: avoid production dependencies that aren't in development
|
|
|
|
-r ./base.txt
|
|
|
|
gunicorn==19.8.1 # https://github.com/benoitc/gunicorn
|
|
psycopg2==2.7.4 --no-binary psycopg2 # https://github.com/psycopg/psycopg2
|
|
{%- if cookiecutter.use_whitenoise == 'n' %}
|
|
Collectfast==0.6.2 # https://github.com/antonagestam/collectfast
|
|
{%- endif %}
|
|
{%- if cookiecutter.use_sentry == "y" %}
|
|
raven==6.9.0 # https://github.com/getsentry/raven-python
|
|
{%- endif %}
|
|
|
|
# Django
|
|
# ------------------------------------------------------------------------------
|
|
django-storages[boto3]==1.6.6 # https://github.com/jschneier/django-storages
|
|
django-anymail[mailgun]==4.2 # https://github.com/anymail/django-anymail
|