From 712df120fd59efa19b9532cc19576a45d3760f70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 03:04:00 -0500 Subject: [PATCH] Bump jinja2 from 3.1.5 to 3.1.6 (#876) * Bump jinja2 from 3.1.5 to 3.1.6 Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.5 to 3.1.6. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/3.1.5...3.1.6) --- updated-dependencies: - dependency-name: jinja2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Fix mypy --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Peter Boers --- pyproject.toml | 2 +- test/unit_tests/helpers.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c41080478..51a958147 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ dependencies = [ "fastapi-etag==0.4.0", "more-itertools~=10.6.0", "itsdangerous", - "Jinja2==3.1.5", + "Jinja2==3.1.6", "orjson==3.10.15", "psycopg[binary]==3.2.5", "pydantic[email]~=2.10.6", diff --git a/test/unit_tests/helpers.py b/test/unit_tests/helpers.py index d13d5ef21..58df5283e 100644 --- a/test/unit_tests/helpers.py +++ b/test/unit_tests/helpers.py @@ -1,7 +1,7 @@ import json from unittest import mock -from deepdiff import DeepDiff # type: ignore +from deepdiff import DeepDiff def assert_no_diff(expected, actual, exclude_paths=None):