From 5b22be91274fac82cdff19039a1692be53a5f58c Mon Sep 17 00:00:00 2001 From: Tom Aarsen <37621491+tomaarsen@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:57:29 +0100 Subject: [PATCH] Introduce Pillow as a dependency (#2374) This is a necessary module, which was initially installed via torchvision --- requirements.txt | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cc7756099..3196b6c2a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,3 +8,4 @@ scipy nltk sentencepiece huggingface-hub +Pillow \ No newline at end of file diff --git a/setup.py b/setup.py index f88d37089..6df3e1e57 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,8 @@ 'scipy', 'nltk', 'sentencepiece', - 'huggingface-hub>=0.4.0' + 'huggingface-hub>=0.4.0', + 'Pillow' ], classifiers=[ "Development Status :: 5 - Production/Stable",