Skip to content

Commit

Permalink
Install mysqlclient if it was enabled in cookiecutter. fix steelkiwi#11.
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiroluz committed Apr 11, 2018
1 parent 9b9b788 commit 4584bfa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions {{cookiecutter.repo_name}}/requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ django-environ==0.4.3
django-extensions==1.7.9
django-model-utils==3.0.0
Pillow==4.1.1
{% if cookiecutter.use_postgresql == "y" or cookiecutter.use_postgis == "y" %}
psycopg2==2.7.1
{%- endif %}
{%- if cookiecutter.use_mysql == 'y' %}
mysqlclient==1.3.12
{%- endif %}
pytz==2017.2
raven==6.1.0
{%- if cookiecutter.use_redis == "y" %}
Expand Down

0 comments on commit 4584bfa

Please sign in to comment.