mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-17 18:34:52 +03:00
Merge pull request #33 from cookiecutter/master
update to upstream v`2022.04.05`
This commit is contained in:
commit
e11af36270
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -3,6 +3,19 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
|
|||
|
||||
<!-- GENERATOR_PLACEHOLDER -->
|
||||
|
||||
## 2022.04.05
|
||||
|
||||
### Updated
|
||||
- Update celery to 5.2.6 ([#3671](https://github.com/cookiecutter/cookiecutter-django/pull/3671))
|
||||
|
||||
## 2022.04.04
|
||||
|
||||
### Updated
|
||||
- Update redis to 4.2.2 ([#3670](https://github.com/cookiecutter/cookiecutter-django/pull/3670))
|
||||
- Update celery to 5.2.5 ([#3669](https://github.com/cookiecutter/cookiecutter-django/pull/3669))
|
||||
- Update pre-commit to 2.18.1 ([#3668](https://github.com/cookiecutter/cookiecutter-django/pull/3668))
|
||||
- Update pillow to 9.1.0 ([#3665](https://github.com/cookiecutter/cookiecutter-django/pull/3665))
|
||||
|
||||
## 2022.04.01
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -8,7 +8,7 @@ black==22.3.0
|
|||
isort==5.10.1
|
||||
flake8==4.0.1
|
||||
flake8-isort==4.1.1
|
||||
pre-commit==2.17.0
|
||||
pre-commit==2.18.1
|
||||
|
||||
# Testing
|
||||
# ------------------------------------------------------------------------------
|
||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ except ImportError:
|
|||
from distutils.core import setup
|
||||
|
||||
# We use calendar versioning
|
||||
version = "2022.04.01"
|
||||
version = "2022.04.05"
|
||||
|
||||
with open("README.rst") as readme_file:
|
||||
long_description = readme_file.read()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
pytz==2022.1 # https://github.com/stub42/pytz
|
||||
python-slugify==6.1.1 # https://github.com/un33k/python-slugify
|
||||
Pillow==9.0.1 # https://github.com/python-pillow/Pillow
|
||||
Pillow==9.1.0 # https://github.com/python-pillow/Pillow
|
||||
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
|
||||
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
|
||||
rcssmin==1.1.0 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
|
||||
|
@ -12,12 +12,12 @@ argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi
|
|||
{%- if cookiecutter.use_whitenoise == 'y' %}
|
||||
whitenoise==6.0.0 # https://github.com/evansd/whitenoise
|
||||
{%- endif %}
|
||||
redis==4.2.1 # https://github.com/redis/redis-py
|
||||
redis==4.2.2 # https://github.com/redis/redis-py
|
||||
{%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %}
|
||||
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|
||||
{%- endif %}
|
||||
{%- if cookiecutter.use_celery == "y" %}
|
||||
celery==5.2.3 # pyup: < 6.0 # https://github.com/celery/celery
|
||||
celery==5.2.6 # pyup: < 6.0 # https://github.com/celery/celery
|
||||
django-celery-beat==2.2.1 # https://github.com/celery/django-celery-beat
|
||||
{%- if cookiecutter.use_docker == 'y' %}
|
||||
flower==1.0.0 # https://github.com/mher/flower
|
||||
|
|
|
@ -41,7 +41,7 @@ pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
|
|||
{%- if cookiecutter.use_celery == 'y' %}
|
||||
pylint-celery==0.3 # https://github.com/PyCQA/pylint-celery
|
||||
{%- endif %}
|
||||
pre-commit==2.17.0 # https://github.com/pre-commit/pre-commit
|
||||
pre-commit==2.18.1 # https://github.com/pre-commit/pre-commit
|
||||
|
||||
# Django
|
||||
# ------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue
Block a user