mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 17:47:08 +03:00
Fix gevent requirement for Python 3
This commit is contained in:
parent
aedba0b1f5
commit
8c2a4cc317
|
@ -14,8 +14,13 @@ django-debug-toolbar==1.4
|
|||
ipdb==0.8.1
|
||||
|
||||
{% if cookiecutter.use_maildump == "y" -%}
|
||||
# Required by maildump. Need to pin dependency to gevent beta to be Python 3-compatible.
|
||||
# Required by maildump.
|
||||
{% if cookiecutter.use_python2 == 'n' -%}
|
||||
# Need to pin dependency to gevent beta to be Python 3-compatible.
|
||||
gevent==1.1b6
|
||||
{% else -%}
|
||||
gevent==1.0.2
|
||||
{% endif -%}
|
||||
# Enables better email testing
|
||||
maildump==0.5.1
|
||||
{%- endif %}
|
||||
|
|
Loading…
Reference in New Issue
Block a user