Install flower==0.9.2 in all environments

This commit is contained in:
Nikita P. Shupeyko 2018-06-10 23:49:03 +03:00
parent f16360fb72
commit a60e1c7ffa
2 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,9 @@ whitenoise==3.3.1 # https://github.com/evansd/whitenoise
redis>=2.10.5 # https://github.com/antirez/redis
{%- if cookiecutter.use_celery == "y" %}
celery==3.1.25 # pyup: <4.0 # https://github.com/celery/celery
{%- if cookiecutter.use_docker == 'y' %}
flower==0.9.2 # https://github.com/mher/flower
{%- endif %}
{%- endif %}
# Django

View File

@ -8,9 +8,6 @@ psycopg2==2.7.4 --no-binary psycopg2 # https://github.com/psycopg/psycopg2
{%- else %}
psycopg2-binary==2.7.4 # https://github.com/psycopg/psycopg2
{%- endif %}
{%- if cookiecutter.use_docker == 'y' and cookiecutter.use_celery == 'y' %}
flower==0.9.2 # https://github.com/mher/flower
{%- endif %}
# Testing
# ------------------------------------------------------------------------------