1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- pyproject.toml.orig 2025-04-22 13:08:41 UTC
+++ pyproject.toml
@@ -26,7 +26,7 @@ dependencies = [
dynamic = ["version"] # will read __version__ from willow/__init__.py
requires-python = ">=3.9"
dependencies = [
- "filetype>=1.0.10,!=1.1.0",
+ "filetype>=1.0.7,!=1.1.0",
"defusedxml>=0.7,<1.0",
]
@@ -35,8 +35,8 @@ heif = [
wand = ["Wand>=0.6,<1.0"]
heif = [
# Pinned because pillow-heif 0.23+ has dropped AVIF support but we still rely on it.
- "pillow-heif>=0.10.0,<0.22.0; python_version < '3.12'",
- "pillow-heif>=0.13.0,<0.22.0; python_version >= '3.12'",
+ "pillow-heif>=0.10.0,<1.0.0; python_version < '3.12'",
+ "pillow-heif>=0.13.0,<1.0.0; python_version >= '3.12'",
]
testing = [
|