mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-01-23 15:54:12 +03:00
version bumps
This commit is contained in:
parent
f9392b7b1f
commit
04146d580e
|
@ -1,6 +1,6 @@
|
|||
cookiecutter==1.5.1
|
||||
flake8==3.2.1 # pyup: != 2.6.0
|
||||
sh==1.12.9
|
||||
flake8==3.3.0 # pyup: != 2.6.0
|
||||
sh==1.12.10
|
||||
binaryornot==0.4.0
|
||||
|
||||
# Testing
|
||||
|
|
|
@ -260,8 +260,6 @@ AUTOSLUG_SLUGIFY_FUNCTION = 'slugify.slugify'
|
|||
{% if cookiecutter.use_celery == 'y' %}
|
||||
########## CELERY
|
||||
INSTALLED_APPS += ['{{cookiecutter.project_slug}}.taskapp.celery.CeleryConfig']
|
||||
# if you are not using the django database broker (e.g. rabbitmq, redis, memcached), you can remove the next line.
|
||||
INSTALLED_APPS += ['kombu.transport.django']
|
||||
BROKER_URL = env('CELERY_BROKER_URL', default='django://')
|
||||
if BROKER_URL == 'django://':
|
||||
CELERY_RESULT_BACKEND = 'redis://'
|
||||
|
|
|
@ -7,7 +7,7 @@ wheel==0.29.0
|
|||
{%- endif %}
|
||||
|
||||
# Bleeding edge Django
|
||||
django==1.10.5
|
||||
django==1.10.6
|
||||
|
||||
# Configuration
|
||||
django-environ==0.4.1
|
||||
|
@ -28,14 +28,14 @@ Pillow==4.0.0
|
|||
|
||||
# For user registration, either via email or social
|
||||
# Well-built with regular release cycles!
|
||||
django-allauth==0.30.0
|
||||
django-allauth==0.31.0
|
||||
|
||||
{% if cookiecutter.windows == 'y' -%}
|
||||
# On Windows, you must download/install psycopg2 manually
|
||||
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
|
||||
{% else %}
|
||||
# Python-PostgreSQL Database Adapter
|
||||
psycopg2==2.6.2
|
||||
psycopg2==2.7
|
||||
{%- endif %}
|
||||
|
||||
# Unicode slugification
|
||||
|
@ -49,7 +49,7 @@ django-redis==4.7.0
|
|||
redis>=2.10.5
|
||||
|
||||
{% if cookiecutter.use_celery == "y" %}
|
||||
celery==3.1.24
|
||||
celery==4.0.2
|
||||
{% endif %}
|
||||
|
||||
{% if cookiecutter.use_compressor == "y" %}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
coverage==4.3.4
|
||||
django-coverage-plugin==1.5.0
|
||||
|
||||
Sphinx==1.5.2
|
||||
Sphinx==1.5.3
|
||||
django-extensions==1.7.7
|
||||
Werkzeug==0.11.15
|
||||
django-test-plus==1.0.17
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# Python-PostgreSQL Database Adapter
|
||||
# If using Win for dev, this assumes Unix in prod
|
||||
# ------------------------------------------------
|
||||
psycopg2==2.6.2
|
||||
psycopg2==2.7
|
||||
{%- endif %}
|
||||
|
||||
# WSGI Handler
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{% if cookiecutter.windows == 'y' -%}
|
||||
# Python-PostgreSQL Database Adapter
|
||||
# If using Win for dev, this assumes Unix in test/prod
|
||||
psycopg2==2.6.2
|
||||
psycopg2==2.7
|
||||
{%- endif %}
|
||||
|
||||
coverage==4.3.4
|
||||
|
|
Loading…
Reference in New Issue
Block a user