From f7f5888b218b790a69aca6fce2fba2b5c905bb89 Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Thu, 2 Jan 2025 14:09:22 -0800 Subject: [PATCH] Stricter jinja version (#186) # PR Description Jinja2 versions 3.1.5 or higher resolves security vulnerabilities in this repo. --- arcade/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arcade/pyproject.toml b/arcade/pyproject.toml index 93e6fe40..a93529ec 100644 --- a/arcade/pyproject.toml +++ b/arcade/pyproject.toml @@ -18,7 +18,7 @@ python = ">=3.10,<4.0" pydantic = "^2.7.0" typer = "^0.9.0" rich = "^13.7.1" -Jinja2 = ">=2.7,<4.0.0" +Jinja2 = ">=3.1.5,<4.0.0" toml = "^0.10.2" pyyaml = "^6.0" tomlkit = "^0.12.4"