mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-02 11:10:12 +03:00
Install python3-dev if use_python2==n
By default, ubuntu-based distros would install python2-dev if you install python-dev. python3-dev should be installed explicitly if we're not using python2.
This commit is contained in:
parent
6915c2c89a
commit
d2e4dfc851
|
@ -3,7 +3,11 @@
|
||||||
build-essential
|
build-essential
|
||||||
#required to translate
|
#required to translate
|
||||||
gettext
|
gettext
|
||||||
|
{% if cookiecutter.use_python2 == 'n' -%}
|
||||||
|
python3-dev
|
||||||
|
{% else %}
|
||||||
python-dev
|
python-dev
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
##shared dependencies of:
|
##shared dependencies of:
|
||||||
##Pillow, pylibmc
|
##Pillow, pylibmc
|
||||||
|
|
Loading…
Reference in New Issue
Block a user