Add pillow to the project's dependencies.

Also fix the relevant error message's formatting.
This commit is contained in:
yrriban 2025-09-19 18:33:08 -04:00
parent c47ee376bd
commit cf6ac16e27
2 changed files with 8 additions and 1 deletions

View file

@ -40,6 +40,6 @@ class Extract(dcc.doom_base.Wad):
) )
print( print(
"Lump {parsed_args.lump} not found in any wad in " f"Lump {parsed_args.lump} not found in any wad in "
+ f"{parsed_args.wad}" + f"{parsed_args.wad}"
) )

View file

@ -16,6 +16,8 @@ dependencies = [
"omgifol (>=0.5.1,<0.6.0)", "omgifol (>=0.5.1,<0.6.0)",
"tomlkit (>=0.13.3,<0.14.0)", "tomlkit (>=0.13.3,<0.14.0)",
"wand (>=0.6.13,<0.7.0)", "wand (>=0.6.13,<0.7.0)",
"pytest (>=8.4.2,<9.0.0)",
"pillow (>=11.3.0,<12.0.0)",
] ]
@ -31,3 +33,8 @@ dcc = { source = "dcc/main.py", type = "onefile" }
[tool.poetry-pyinstaller-plugin.collect] [tool.poetry-pyinstaller-plugin.collect]
all = ["cliff"] all = ["cliff"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]