Merge branch 'master' of github.com:pydanny/cookiecutter-django into update_forms

This commit is contained in:
Arnav Choudhury 2021-02-05 09:33:07 +05:30
commit 4a48b1725e
8 changed files with 34 additions and 4 deletions

View File

@ -1067,5 +1067,10 @@
"name": "vascop",
"github_login": "vascop",
"twitter_username": ""
},
{
"name": "PJ Hoberman",
"github_login": "pjhoberman",
"twitter_username": ""
}
]

View File

@ -8,3 +8,5 @@ updates:
directory: "/"
schedule:
interval: "daily"
labels:
- "update"

View File

@ -26,7 +26,7 @@ jobs:
run: pre-commit autoupdate
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3.7.0
uses: peter-evans/create-pull-request@v3.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: update/pre-commit-autoupdate

View File

@ -3,6 +3,18 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
<!-- GENERATOR_PLACEHOLDER -->
## [2021-02-01]
### Updated
- Update pytz to 2021.1 ([#3035](https://api.github.com/repos/pydanny/cookiecutter-django/pulls/3035))
- Update jinja2 to 2.11.3 ([#3033](https://api.github.com/repos/pydanny/cookiecutter-django/pulls/3033))
- Bump peter-evans/create-pull-request from v3.7.0 to v3.8.0 ([#3034](https://api.github.com/repos/pydanny/cookiecutter-django/pulls/3034))
## [2021-01-31]
### Changed
- Adding local celery instructions to developing-locally ([#3031](https://api.github.com/repos/pydanny/cookiecutter-django/pulls/3031))
### Updated
- Update django-crispy-forms to 1.11.0 ([#3032](https://api.github.com/repos/pydanny/cookiecutter-django/pulls/3032))
## [2021-01-28]
### Updated
- Update pre-commit to 2.10.0 ([#3028](https://api.github.com/repos/pydanny/cookiecutter-django/pulls/3028))

View File

@ -1223,6 +1223,13 @@ Listed in alphabetical order.
</td>
<td></td>
</tr>
<tr>
<td>PJ Hoberman</td>
<td>
<a href="https://github.com/pjhoberman">pjhoberman</a>
</td>
<td></td>
</tr>
<tr>
<td>Raony Guimarães Corrêa</td>
<td>

View File

@ -143,6 +143,10 @@ when developing locally. If you have the appropriate setup on your local machine
in ``config/settings/local.py``::
CELERY_TASK_ALWAYS_EAGER = False
To run Celery locally, make sure redis-server is installed (instructions are available at https://redis.io/topics/quickstart), run the server in one terminal with `redis-server`, and then start celery in another terminal with the following command::
celery -A config.celery_app worker --loglevel=info
Sass Compilation & Live Reloading

View File

@ -20,4 +20,4 @@ pyyaml==5.4.1
# Scripting
# ------------------------------------------------------------------------------
PyGithub==1.54.1
jinja2==2.11.2
jinja2==2.11.3

View File

@ -1,4 +1,4 @@
pytz==2020.5 # https://github.com/stub42/pytz
pytz==2021.1 # https://github.com/stub42/pytz
python-slugify==4.0.1 # https://github.com/un33k/python-slugify
Pillow==8.1.0 # https://github.com/python-pillow/Pillow
{%- if cookiecutter.use_compressor == "y" %}
@ -33,7 +33,7 @@ django==3.0.11 # pyup: < 3.1 # https://www.djangoproject.com/
django-environ==0.4.5 # https://github.com/joke2k/django-environ
django-model-utils==4.1.1 # https://github.com/jazzband/django-model-utils
django-allauth==0.44.0 # https://github.com/pennersr/django-allauth
django-crispy-forms==1.10.0 # https://github.com/django-crispy-forms/django-crispy-forms
django-crispy-forms==1.11.0 # https://github.com/django-crispy-forms/django-crispy-forms
{%- if cookiecutter.use_compressor == "y" %}
django-compressor==2.4 # https://github.com/django-compressor/django-compressor
{%- endif %}