From ad825e2c8b881f8ba97d75ceb30c8edebd5c9ae7 Mon Sep 17 00:00:00 2001 From: Dominic Davis-Foster Date: Tue, 16 Apr 2024 08:01:29 +0100 Subject: [PATCH] Cap wordcloud and pillow --- pyproject.toml | 3 +++ requirements.txt | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 041c6ab..4832660 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -127,6 +127,9 @@ show_error_codes = true [tool.snippet-fmt] directives = [ "code-block",] +[tool.dep_checker] +allowed_unused = [ "pillow",] + [tool.dependency-dash."requirements.txt"] order = 10 diff --git a/requirements.txt b/requirements.txt index 3c9211a..2fcbce1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,6 +4,7 @@ matplotlib==3.2.2; platform_machine == "aarch64" and python_version == "3.6" matplotlib<3.4.0,>=3.2.2; platform_machine != "aarch64" or python_version > "3.6" numpy>=1.19.2; platform_system != "Windows" numpy!=1.19.4,>=1.19.3; platform_system == "Windows" +pillow<10 pygments>=2.7.4 southwark>=0.8.0 -wordcloud>=1.8.0 +wordcloud<1.9.0,>=1.8.0