Fix gevent requirement for Python 3

This commit is contained in:
mcho421 2015-10-31 12:17:00 +11:00
parent aedba0b1f5
commit 8c2a4cc317

View File

@ -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 %}