From 7ec59c41a277b594242ee4564df069e8e4356d8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:35:25 +0100 Subject: [PATCH 1/2] Bump jinja2 from 3.1.5 to 3.1.6 in /examples/docker-flask (#679) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/docker-flask/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/docker-flask/requirements.txt b/examples/docker-flask/requirements.txt index 1a9b0ae..1372939 100644 --- a/examples/docker-flask/requirements.txt +++ b/examples/docker-flask/requirements.txt @@ -4,7 +4,7 @@ blinker==1.6.2 click==8.1.3 Flask==2.3.2 itsdangerous==2.1.2 -Jinja2==3.1.5 +Jinja2==3.1.6 MarkupSafe==2.1.2 Pillow==10.3.0 pycups==2.0.1 From 9b695d698be7ef8939c8ad8ac78d8a77156aba3e Mon Sep 17 00:00:00 2001 From: Patrick Kanzler Date: Sun, 16 Mar 2025 15:52:23 +0100 Subject: [PATCH 2/2] exclude .venv from flake8 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index ef614e3..e8fe3a3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -75,6 +75,6 @@ all = pywin32; platform_system=='Windows' [flake8] -exclude = .git,.tox,.github,.eggs,__pycache__,doc/conf.py,build,dist,capabilities-data,test,src/escpos/constants.py +exclude = .git,.venv,.tox,.github,.eggs,__pycache__,doc/conf.py,build,dist,capabilities-data,test,src/escpos/constants.py max-line-length = 120 extend-ignore = E203, W503