From 2b6e97a492228a18ab55f2d023033d6d30f2c370 Mon Sep 17 00:00:00 2001 From: Sebastian Tramp Date: Mon, 9 Oct 2023 08:51:17 +0200 Subject: [PATCH] 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 397a7d2..57fcc74 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"