From c171d381d61055b2ecd07bc7a0ad823f11aa4dfa Mon Sep 17 00:00:00 2001 From: Victor Miti Date: Sat, 10 Feb 2024 17:00:36 +0000 Subject: [PATCH] build(deps): install latest release of django-mjml which now supports django 5.0 --- {{cookiecutter.project_slug}}/poetry.lock | 16 ++++++---------- {{cookiecutter.project_slug}}/pyproject.toml | 4 +--- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/{{cookiecutter.project_slug}}/poetry.lock b/{{cookiecutter.project_slug}}/poetry.lock index 3d166097..70b7e088 100644 --- a/{{cookiecutter.project_slug}}/poetry.lock +++ b/{{cookiecutter.project_slug}}/poetry.lock @@ -972,12 +972,14 @@ Django = ">=3.2" [[package]] name = "django-mjml" -version = "1.1" +version = "1.2" description = "Use MJML in Django templates" optional = false python-versions = ">=3.6" -files = [] -develop = false +files = [ + {file = "django-mjml-1.2.tar.gz", hash = "sha256:5a8a670614602016bac11470a0499b77c451768af32ed253983c80597bb2f449"}, + {file = "django_mjml-1.2-py3-none-any.whl", hash = "sha256:6ede759763f46f74fb0f9346e9b10d282bb88599c077aaa11939cfb67e3b2845"}, +] [package.dependencies] django = ">=2.2,<5.1" @@ -985,12 +987,6 @@ django = ">=2.2,<5.1" [package.extras] requests = ["requests (>=2.24)"] -[package.source] -type = "git" -url = "https://github.com/jpells/django-mjml.git" -reference = "dd0bfe7ba9ef72719f5ec89470379b102d5b79a0" -resolved_reference = "dd0bfe7ba9ef72719f5ec89470379b102d5b79a0" - [[package]] name = "django-modelcluster" version = "6.1" @@ -3597,4 +3593,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "~=3.12" -content-hash = "3bb7532c1c077f12108266922ce0ada9c867b7a05816709b800fb878d5067665" +content-hash = "771eb85e7c976f5af13419b65496177de1fec35133be7f9894a6bcbd0183cc77" diff --git a/{{cookiecutter.project_slug}}/pyproject.toml b/{{cookiecutter.project_slug}}/pyproject.toml index 0c6673e0..5b0e4713 100644 --- a/{{cookiecutter.project_slug}}/pyproject.toml +++ b/{{cookiecutter.project_slug}}/pyproject.toml @@ -22,9 +22,7 @@ crispy-bootstrap5 = "^2023.10" django-crispy-forms = "^2.1" django-environ = "0.11.2" django-extensions = "3.2.3" -# django-mjml = "1.1" # Doesn't support Django 5.0 yet -# TODO: Remove this and uncomment above once the pending PR is merged -django-mjml = { git = "https://github.com/jpells/django-mjml.git", rev = "dd0bfe7ba9ef72719f5ec89470379b102d5b79a0" } +django-mjml = "1.2" django-redis = "5.4.0" django-rq = "^2.10.1" django-widget-tweaks = "1.5.0"