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
|
cookiecutter==1.5.1
|
||||||
flake8==3.2.1 # pyup: != 2.6.0
|
flake8==3.3.0 # pyup: != 2.6.0
|
||||||
sh==1.12.9
|
sh==1.12.10
|
||||||
binaryornot==0.4.0
|
binaryornot==0.4.0
|
||||||
|
|
||||||
# Testing
|
# Testing
|
||||||
|
|
|
@ -260,8 +260,6 @@ AUTOSLUG_SLUGIFY_FUNCTION = 'slugify.slugify'
|
||||||
{% if cookiecutter.use_celery == 'y' %}
|
{% if cookiecutter.use_celery == 'y' %}
|
||||||
########## CELERY
|
########## CELERY
|
||||||
INSTALLED_APPS += ['{{cookiecutter.project_slug}}.taskapp.celery.CeleryConfig']
|
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://')
|
BROKER_URL = env('CELERY_BROKER_URL', default='django://')
|
||||||
if BROKER_URL == 'django://':
|
if BROKER_URL == 'django://':
|
||||||
CELERY_RESULT_BACKEND = 'redis://'
|
CELERY_RESULT_BACKEND = 'redis://'
|
||||||
|
|
|
@ -7,7 +7,7 @@ wheel==0.29.0
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
# Bleeding edge Django
|
# Bleeding edge Django
|
||||||
django==1.10.5
|
django==1.10.6
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
django-environ==0.4.1
|
django-environ==0.4.1
|
||||||
|
@ -28,14 +28,14 @@ Pillow==4.0.0
|
||||||
|
|
||||||
# For user registration, either via email or social
|
# For user registration, either via email or social
|
||||||
# Well-built with regular release cycles!
|
# Well-built with regular release cycles!
|
||||||
django-allauth==0.30.0
|
django-allauth==0.31.0
|
||||||
|
|
||||||
{% if cookiecutter.windows == 'y' -%}
|
{% if cookiecutter.windows == 'y' -%}
|
||||||
# On Windows, you must download/install psycopg2 manually
|
# On Windows, you must download/install psycopg2 manually
|
||||||
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
|
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
|
||||||
{% else %}
|
{% else %}
|
||||||
# Python-PostgreSQL Database Adapter
|
# Python-PostgreSQL Database Adapter
|
||||||
psycopg2==2.6.2
|
psycopg2==2.7
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
# Unicode slugification
|
# Unicode slugification
|
||||||
|
@ -49,7 +49,7 @@ django-redis==4.7.0
|
||||||
redis>=2.10.5
|
redis>=2.10.5
|
||||||
|
|
||||||
{% if cookiecutter.use_celery == "y" %}
|
{% if cookiecutter.use_celery == "y" %}
|
||||||
celery==3.1.24
|
celery==4.0.2
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if cookiecutter.use_compressor == "y" %}
|
{% if cookiecutter.use_compressor == "y" %}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
coverage==4.3.4
|
coverage==4.3.4
|
||||||
django-coverage-plugin==1.5.0
|
django-coverage-plugin==1.5.0
|
||||||
|
|
||||||
Sphinx==1.5.2
|
Sphinx==1.5.3
|
||||||
django-extensions==1.7.7
|
django-extensions==1.7.7
|
||||||
Werkzeug==0.11.15
|
Werkzeug==0.11.15
|
||||||
django-test-plus==1.0.17
|
django-test-plus==1.0.17
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# Python-PostgreSQL Database Adapter
|
# Python-PostgreSQL Database Adapter
|
||||||
# If using Win for dev, this assumes Unix in prod
|
# If using Win for dev, this assumes Unix in prod
|
||||||
# ------------------------------------------------
|
# ------------------------------------------------
|
||||||
psycopg2==2.6.2
|
psycopg2==2.7
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
# WSGI Handler
|
# WSGI Handler
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{% if cookiecutter.windows == 'y' -%}
|
{% if cookiecutter.windows == 'y' -%}
|
||||||
# Python-PostgreSQL Database Adapter
|
# Python-PostgreSQL Database Adapter
|
||||||
# If using Win for dev, this assumes Unix in test/prod
|
# If using Win for dev, this assumes Unix in test/prod
|
||||||
psycopg2==2.6.2
|
psycopg2==2.7
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
coverage==4.3.4
|
coverage==4.3.4
|
||||||
|
|
Loading…
Reference in New Issue
Block a user