Skip to content

Commit bc6fa21

Browse files
committed
fix: add missing Pillow dependency to essays service
file_processing.py and plugins.py import PIL.Image but Pillow was not listed in pyproject.toml dependencies. Container crashes with ModuleNotFoundError: No module named 'PIL' on startup.
1 parent 420fa6d commit bc6fa21

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

apps/essays/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ dependencies = [
3939
"rapidfuzz>=3.10.0",
4040
"azure-ai-vision-imageanalysis>=1.0.0",
4141
"pypdf>=4.2.0",
42+
"Pillow>=10.0.0",
4243
]
4344

4445
[project.optional-dependencies]

0 commit comments

Comments
 (0)