Move sentry-sdk requirement to base.txt

This commit is contained in:
Fabio C. Barrionuevo da Luz 2021-01-18 16:06:31 -03:00
parent adb8abe040
commit 2d84fe89dd
2 changed files with 3 additions and 3 deletions

View File

@ -27,6 +27,9 @@ flower==0.9.7 # https://github.com/mher/flower
{%- if cookiecutter.use_async == 'y' %} {%- if cookiecutter.use_async == 'y' %}
uvicorn[standard]==0.13.3 # https://github.com/encode/uvicorn uvicorn[standard]==0.13.3 # https://github.com/encode/uvicorn
{%- endif %} {%- endif %}
{%- if cookiecutter.use_sentry == "y" %}
sentry-sdk==0.19.5 # https://github.com/getsentry/sentry-python
{%- endif %}
# Django # Django
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------

View File

@ -7,9 +7,6 @@ psycopg2==2.8.6 # https://github.com/psycopg/psycopg2
{%- if cookiecutter.use_whitenoise == 'n' %} {%- if cookiecutter.use_whitenoise == 'n' %}
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
{%- endif %} {%- endif %}
{%- if cookiecutter.use_sentry == "y" %}
sentry-sdk==0.19.5 # https://github.com/getsentry/sentry-python
{%- endif %}
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %} {%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
hiredis==1.1.0 # https://github.com/redis/hiredis-py hiredis==1.1.0 # https://github.com/redis/hiredis-py
{%- endif %} {%- endif %}