From 0c36ba1c72996e08a608da77de580be00c858c24 Mon Sep 17 00:00:00 2001 From: "bscriver123 (aider)" Date: Thu, 12 Dec 2024 08:22:24 +0000 Subject: [PATCH 1/2] fix: Replace python3 with python in Makefile for self-contained usage --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5960985..b8fda6c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJECT_NAME := $(shell basename $CURDIR) VIRTUAL_ENV := $(CURDIR)/.venv -LOCAL_PYTHON := $(VIRTUAL_ENV)/bin/python3 +LOCAL_PYTHON := $(VIRTUAL_ENV)/bin/python define HELP Manage $(PROJECT_NAME). Usage: @@ -98,4 +98,4 @@ clean: find . -type d -wholename '**/.pytest_cache' -exec rm -rf {} + && \ find . -type d -wholename '**/*.log' -exec rm -rf {} + && \ find . -type d -wholename './.reports/*' -exec rm -rf {} + && \ - find . -type d -wholename '**/.webassets-cache' -exec rm -rf {} + \ No newline at end of file + find . -type d -wholename '**/.webassets-cache' -exec rm -rf {} + From 8ffd8a50c2e7303417899835d2eff0c465809157 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 05:25:36 +0000 Subject: [PATCH 2/2] chore(deps): update dependency jinja2 to v3.1.6 [security] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 4f51791..36626c7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ gunicorn==21.2.0 ; python_version >= "3.10" and python_version < "4.0" iniconfig==2.0.0 ; python_version >= "3.10" and python_version < "4.0" isort==5.13.2 ; python_version >= "3.10" and python_version < "4.0" itsdangerous==2.2.0 ; python_version >= "3.10" and python_version < "4.0" -jinja2==3.1.4 ; python_version >= "3.10" and python_version < "4.0" +jinja2==3.1.6 ; python_version >= "3.10" and python_version < "4.0" markupsafe==2.1.5 ; python_version >= "3.10" and python_version < "4.0" mypy-extensions==1.0.0 ; python_version >= "3.10" and python_version < "4.0" mypy==1.10.0 ; python_version >= "3.10" and python_version < "4.0"