From 70e7b542eda38bc11c9c02ccb2314723f28d232e Mon Sep 17 00:00:00 2001 From: Sebastian Tramp Date: Mon, 9 Oct 2023 08:51:17 +0200 Subject: [PATCH 1/2] adjust dependencies --- CHANGELOG.md | 7 +++++++ src/Taskfile.yaml | 3 ++- src/pyproject.toml.jinja | 5 ++++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f14d515..7a61425 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/) +## [5.3.2] 2023-10-13 + +### Fixed + +- pylint/pillow dependencies to avoid errors + + ## [5.3.1] 2023-09-14 ### Fixed diff --git a/src/Taskfile.yaml b/src/Taskfile.yaml index 4ae8177..0b4527a 100644 --- a/src/Taskfile.yaml +++ b/src/Taskfile.yaml @@ -149,7 +149,8 @@ tasks: <<: *preparation cmds: # ignore 51358 safety - dev dependency only - - poetry run safety check -i 51358 + # ignore 61489 pillow - dev dependency only + - poetry run safety check -i 51358 -i 61489 check:bandit: desc: Find common security issues diff --git a/src/pyproject.toml.jinja b/src/pyproject.toml.jinja index 1e7ff4d..b56ea58 100644 --- a/src/pyproject.toml.jinja +++ b/src/pyproject.toml.jinja @@ -29,9 +29,12 @@ black = "^23.3.0" coverage = "^7.2.3" defusedxml = "^0.7.1" flake8-formatter-junit-xml = "^0.0.6" +# https://github.com/smarie/python-genbadge/issues/31 +pillow = "^9.5.0" genbadge = "^1.1.0" mypy = "^1.2.0" -pillow = "^9.5.0" +# https://github.com/rasjani/pylint-junit/issues/1 +pylint = "^2" pylint-junit = "^0.3.2" pytest = "^7.3.1" pytest-cov = "^4.0.0" From 68e33cc911259096fff9c5ac321528034cd88653 Mon Sep 17 00:00:00 2001 From: Sebastian Tramp Date: Mon, 9 Oct 2023 08:55:43 +0200 Subject: [PATCH 2/2] change log --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a61425..3ea7530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/) -## [5.3.2] 2023-10-13 +## [5.3.3] 2023-10-13 + +### Fixed + +- pylint/pillow dependencies to avoid errors + + +## [5.3.2] 2023-10-13 (yanked) ### Fixed