From ba9d73ce2139d9755f504e8452c7d34fcfad7ff9 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 17 Jun 2023 13:38:53 -0500 Subject: [PATCH 01/22] Update myst-parser from 1.0.0 to 2.0.0 (#4388) --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 1ae530fa7..d06b651b3 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,3 @@ sphinx==6.2.1 sphinx-rtd-theme==1.2.2 -myst-parser==1.0.0 +myst-parser==2.0.0 From 0b92189b61a51dbaaf990c7cc547bd52b156c7eb Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sat, 17 Jun 2023 13:39:30 -0500 Subject: [PATCH 02/22] Update tox from 4.6.1 to 4.6.2 (#4401) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e9253922d..95b3d8cdc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ pre-commit==3.3.3 # Testing # ------------------------------------------------------------------------------ -tox==4.6.1 +tox==4.6.2 pytest==7.3.2 pytest-xdist==3.3.1 pytest-cookies==0.7.0 From 1e40d7908fcc5e3e276db37e0e1f630f7fba2b78 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 18 Jun 2023 02:31:49 +0000 Subject: [PATCH 03/22] Release 2023.06.17 --- CHANGELOG.md | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a90c1fecd..1ed82b9a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.06.17 + + ## 2023.06.16 diff --git a/setup.py b/setup.py index 717d19913..f03a87a09 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.06.16" +version = "2023.06.17" with open("README.rst") as readme_file: long_description = readme_file.read() From 7ad2e1fdae82e011fa823f5f42590bf6ce3638ee Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sun, 18 Jun 2023 13:03:36 +0100 Subject: [PATCH 04/22] Fix missing celery env variable when running compilemessages (#4403) --- .../compose/production/django/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile b/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile index 5a863ddc5..a48cbc4af 100644 --- a/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile +++ b/{{cookiecutter.project_slug}}/compose/production/django/Dockerfile @@ -122,6 +122,9 @@ RUN chown django:django ${APP_HOME} USER django RUN DATABASE_URL="" \ + {%- if cookiecutter.use_celery == "y" %} + CELERY_BROKER_URL="" \ + {%- endif %} DJANGO_SETTINGS_MODULE="config.settings.test" \ python manage.py compilemessages From 224f31e7f34ab9daaa8e8394e9c6823e7657fd58 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Sun, 18 Jun 2023 07:32:36 -0500 Subject: [PATCH 05/22] Update flower from 1.2.0 to 2.0.0 (#4402) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 92d6b2a0d..6a9b57013 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -19,7 +19,7 @@ hiredis==2.2.3 # https://github.com/redis/hiredis-py celery==5.3.0 # pyup: < 6.0 # https://github.com/celery/celery django-celery-beat==2.5.0 # https://github.com/celery/django-celery-beat {%- if cookiecutter.use_docker == 'y' %} -flower==1.2.0 # https://github.com/mher/flower +flower==2.0.0 # https://github.com/mher/flower {%- endif %} {%- endif %} {%- if cookiecutter.use_async == 'y' %} From 95353f07a975a201cd90088ad1b1905611b94d11 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 19 Jun 2023 02:26:21 +0000 Subject: [PATCH 06/22] Release 2023.06.18 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ed82b9a1..6eabf5799 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.06.18 + + +### Changed + +- Fix missing celery env variable when running compilemessages ([#4403](https://github.com/cookiecutter/cookiecutter-django/pull/4403)) + +### Updated + +- Update flower to 2.0.0 ([#4402](https://github.com/cookiecutter/cookiecutter-django/pull/4402)) + ## 2023.06.17 diff --git a/setup.py b/setup.py index f03a87a09..335b1cc66 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.06.17" +version = "2023.06.18" with open("README.rst") as readme_file: long_description = readme_file.read() From 2bff4b8a8376cece7268af0635f100fc0c71c9c0 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Mon, 19 Jun 2023 04:11:17 -0500 Subject: [PATCH 07/22] Update celery to 5.3.1 (#4404) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 6a9b57013..5e7f7d28d 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -16,7 +16,7 @@ redis==4.5.5 # https://github.com/redis/redis-py hiredis==2.2.3 # https://github.com/redis/hiredis-py {%- endif %} {%- if cookiecutter.use_celery == "y" %} -celery==5.3.0 # pyup: < 6.0 # https://github.com/celery/celery +celery==5.3.1 # pyup: < 6.0 # https://github.com/celery/celery django-celery-beat==2.5.0 # https://github.com/celery/django-celery-beat {%- if cookiecutter.use_docker == 'y' %} flower==2.0.0 # https://github.com/mher/flower From 5de0e05490cd28cf517d71b5f19c9aa0afb8889b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Jun 2023 10:11:35 +0100 Subject: [PATCH 08/22] Auto-update pre-commit hooks (#4405) Co-authored-by: browniebroke --- .pre-commit-config.yaml | 2 +- {{cookiecutter.project_slug}}/.pre-commit-config.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 98afc14e0..b35eae073 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: args: ["--tab-width", "2"] - repo: https://github.com/asottile/pyupgrade - rev: v3.6.0 + rev: v3.7.0 hooks: - id: pyupgrade args: [--py311-plus] diff --git a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml index 99b08271c..f16a87fd2 100644 --- a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml @@ -31,7 +31,7 @@ repos: args: ['--target-version', '4.1'] - repo: https://github.com/asottile/pyupgrade - rev: v3.6.0 + rev: v3.7.0 hooks: - id: pyupgrade args: [--py311-plus] From 399a080c5b708ba72cb53eefa6a270c7a4de5218 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 20 Jun 2023 02:21:32 +0000 Subject: [PATCH 09/22] Release 2023.06.19 --- CHANGELOG.md | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eabf5799..d35d947ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.06.19 + + +### Updated + +- Auto-update pre-commit hooks ([#4405](https://github.com/cookiecutter/cookiecutter-django/pull/4405)) + +- Update celery to 5.3.1 ([#4404](https://github.com/cookiecutter/cookiecutter-django/pull/4404)) + ## 2023.06.18 diff --git a/setup.py b/setup.py index 335b1cc66..64027dad9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.06.18" +version = "2023.06.19" with open("README.rst") as readme_file: long_description = readme_file.read() From b4c705f16e1e0c2cd7e070a731e2c900a3e5247a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Jun 2023 10:36:44 +0100 Subject: [PATCH 10/22] Upgrade traefik to 2.10.3 (#4408) Bumps traefik from 2.10.1 to 2.10.3. --- updated-dependencies: - dependency-name: traefik dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .../compose/production/traefik/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/compose/production/traefik/Dockerfile b/{{cookiecutter.project_slug}}/compose/production/traefik/Dockerfile index 581bbfebd..bdedff720 100644 --- a/{{cookiecutter.project_slug}}/compose/production/traefik/Dockerfile +++ b/{{cookiecutter.project_slug}}/compose/production/traefik/Dockerfile @@ -1,4 +1,4 @@ -FROM traefik:2.10.1 +FROM traefik:2.10.3 RUN mkdir -p /etc/traefik/acme \ && touch /etc/traefik/acme/acme.json \ && chmod 600 /etc/traefik/acme/acme.json From 91cc9e2f3a654b1fee051a24030aa42d907923bb Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 21 Jun 2023 04:37:05 -0500 Subject: [PATCH 11/22] Update tox to 4.6.3 (#4407) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 95b3d8cdc..084f870f4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ pre-commit==3.3.3 # Testing # ------------------------------------------------------------------------------ -tox==4.6.2 +tox==4.6.3 pytest==7.3.2 pytest-xdist==3.3.1 pytest-cookies==0.7.0 From c2afdae77a958eb34ea0113304a3969376149562 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 22 Jun 2023 02:26:04 +0000 Subject: [PATCH 12/22] Release 2023.06.21 --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d35d947ac..7d563b1a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.06.21 + + +### Updated + +- Upgrade traefik to 2.10.3 ([#4408](https://github.com/cookiecutter/cookiecutter-django/pull/4408)) + ## 2023.06.19 diff --git a/setup.py b/setup.py index 64027dad9..3d6c87f92 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.06.19" +version = "2023.06.21" with open("README.rst") as readme_file: long_description = readme_file.read() From 9f9a88670855490d7026e998f7d9443efbb50467 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 22 Jun 2023 10:28:21 -0500 Subject: [PATCH 13/22] Update sentry-sdk from 1.25.1 to 1.26.0 (#4409) --- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index aec79b3d3..36f6e74f5 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -8,7 +8,7 @@ psycopg2==2.9.6 # https://github.com/psycopg/psycopg2 Collectfast==2.2.0 # https://github.com/antonagestam/collectfast {%- endif %} {%- if cookiecutter.use_sentry == "y" %} -sentry-sdk==1.25.1 # https://github.com/getsentry/sentry-python +sentry-sdk==1.26.0 # https://github.com/getsentry/sentry-python {%- endif %} {%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %} hiredis==2.2.3 # https://github.com/redis/hiredis-py From a99e28702403bd04e2c44cf760d880a719266c28 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 22 Jun 2023 14:24:23 -0500 Subject: [PATCH 14/22] Update drf-spectacular from 0.26.2 to 0.26.3 (#4411) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 5e7f7d28d..a032f404d 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -43,7 +43,7 @@ django-redis==5.3.0 # https://github.com/jazzband/django-redis djangorestframework==3.14.0 # https://github.com/encode/django-rest-framework django-cors-headers==4.1.0 # https://github.com/adamchainz/django-cors-headers # DRF-spectacular for api documentation -drf-spectacular==0.26.2 # https://github.com/tfranzel/drf-spectacular +drf-spectacular==0.26.3 # https://github.com/tfranzel/drf-spectacular {%- endif %} {%- if cookiecutter.frontend_pipeline == 'Webpack' %} django-webpack-loader==2.0.1 # https://github.com/django-webpack/django-webpack-loader From 2c5342c36d8a917c229249e6c5668e49a0855f62 Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Thu, 22 Jun 2023 14:24:38 -0500 Subject: [PATCH 15/22] Update pygithub from 1.58.2 to 1.59.0 (#4410) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 084f870f4..15497ac2e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,7 +21,7 @@ pyyaml==6.0 # Scripting # ------------------------------------------------------------------------------ -PyGithub==1.58.2 +PyGithub==1.59.0 gitpython==3.1.31 jinja2==3.1.2 requests==2.31.0 From d45ecc53f11f540a9f15e63722878957ace31607 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 23 Jun 2023 02:32:39 +0000 Subject: [PATCH 16/22] Release 2023.06.22 --- CHANGELOG.md | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d563b1a9..56fa84c30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2023.06.22 + + +### Updated + +- Update pygithub to 1.59.0 ([#4410](https://github.com/cookiecutter/cookiecutter-django/pull/4410)) + +- Update drf-spectacular to 0.26.3 ([#4411](https://github.com/cookiecutter/cookiecutter-django/pull/4411)) + +- Update sentry-sdk to 1.26.0 ([#4409](https://github.com/cookiecutter/cookiecutter-django/pull/4409)) + ## 2023.06.21 diff --git a/setup.py b/setup.py index 3d6c87f92..9ab3a64bb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2023.06.21" +version = "2023.06.22" with open("README.rst") as readme_file: long_description = readme_file.read() From 2b9c56cf3995ae1695a1b084a19de0c4b21e192a Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Fri, 23 Jun 2023 10:21:53 +0100 Subject: [PATCH 17/22] Add open-collective to funding file --- .github/FUNDING.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 53a486671..23ca7a37f 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -2,11 +2,4 @@ github: [pydanny, browniebroke] patreon: feldroy -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: ["https://www.patreon.com/browniebroke"] +open_collective: cookiecutter-django From d4824e1934cdf1f4d923e490b2e7119371bf1baa Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Fri, 23 Jun 2023 10:35:44 +0100 Subject: [PATCH 18/22] Link to OpenCollective in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d718ee34c..bab5aa041 100644 --- a/README.md +++ b/README.md @@ -56,10 +56,11 @@ _These features can be enabled during initial project setup._ ## Support this Project! -This project is run by volunteers. Please support them in their efforts to maintain and improve Cookiecutter Django: +This project is an open source project run by volunteers. You can sponsor us via [OpenCollective](https://opencollective.com/cookiecutter-django) or individually via GitHub Sponsors: - Daniel Roy Greenfeld, Project Lead ([GitHub](https://github.com/pydanny), [Patreon](https://www.patreon.com/danielroygreenfeld)): expertise in Django and AWS ELB. - Fabio C. Barrionuevo, Core Developer ([GitHub](https://github.com/luzfcb)): expertise in Python/Django, hands-on DevOps and frontend experience. +- Bruno Alla, Core Developer ([GitHub](https://github.com/browniebroke)): expertise in Python/Django and DevOps. - Nikita Shupeyko, Core Developer ([GitHub](https://github.com/webyneter)): expertise in Python/Django, hands-on DevOps and frontend experience. Projects that provide financial support to the maintainers: From a126dfb96f0143adf3c9cc644f7f79a2c3186476 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 23 Jun 2023 18:48:31 +0100 Subject: [PATCH 19/22] Update pytest from 7.3.2 to 7.4.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 15497ac2e..c547458b6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ pre-commit==3.3.3 # Testing # ------------------------------------------------------------------------------ tox==4.6.3 -pytest==7.3.2 +pytest==7.4.0 pytest-xdist==3.3.1 pytest-cookies==0.7.0 pytest-instafail==0.5.0 From b2642ac37d12eaa8e94c15214233d51a329e4cdb Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Fri, 23 Jun 2023 18:48:31 +0100 Subject: [PATCH 20/22] Update pytest from 7.3.2 to 7.4.0 --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 983f96cb9..b3a3e7c74 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -15,7 +15,7 @@ watchfiles==0.19.0 # https://github.com/samuelcolvin/watchfiles # ------------------------------------------------------------------------------ mypy==1.3.0 # https://github.com/python/mypy django-stubs==4.2.1 # https://github.com/typeddjango/django-stubs -pytest==7.3.2 # https://github.com/pytest-dev/pytest +pytest==7.4.0 # https://github.com/pytest-dev/pytest pytest-sugar==0.9.7 # https://github.com/Frozenball/pytest-sugar {%- if cookiecutter.use_drf == "y" %} djangorestframework-stubs==3.14.1 # https://github.com/typeddjango/djangorestframework-stubs From f0357e2ad04628bb99e8a41d4eadd47eb443d4dc Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Sun, 25 Jun 2023 16:38:42 +0100 Subject: [PATCH 21/22] Update redis from 4.5.5 to 4.6.0 --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index a032f404d..d23da8c61 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -11,7 +11,7 @@ argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi {%- if cookiecutter.use_whitenoise == 'y' %} whitenoise==6.5.0 # https://github.com/evansd/whitenoise {%- endif %} -redis==4.5.5 # https://github.com/redis/redis-py +redis==4.6.0 # https://github.com/redis/redis-py {%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %} hiredis==2.2.3 # https://github.com/redis/hiredis-py {%- endif %} From da6fadd99ea1a6da02d9130727a5e530a38caf2f Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 26 Jun 2023 02:35:34 +0100 Subject: [PATCH 22/22] Update mypy from 1.3.0 to 1.4.1 --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 983f96cb9..b3f53a140 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -13,7 +13,7 @@ watchfiles==0.19.0 # https://github.com/samuelcolvin/watchfiles # Testing # ------------------------------------------------------------------------------ -mypy==1.3.0 # https://github.com/python/mypy +mypy==1.4.1 # https://github.com/python/mypy django-stubs==4.2.1 # https://github.com/typeddjango/django-stubs pytest==7.3.2 # https://github.com/pytest-dev/pytest pytest-sugar==0.9.7 # https://github.com/Frozenball/pytest-sugar