Skip to content

Commit 06649be

Browse files
committed
fix: update pillow version
1 parent d7ebb63 commit 06649be

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

pyproject.toml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ dependencies = [
4444
"filelock >= 3.0.0, < 4.0.0",
4545
"pip-system-certs >= 4.0.0, < 5.0.0; platform_system=='Windows'",
4646
"pyrate-limiter >= 3, < 4",
47-
"kili-formats == 0.2.11"
47+
"kili-formats == 0.2.12"
4848
]
4949
urls = { homepage = "https://github.com/kili-technology/kili-python-sdk" }
5050

@@ -84,7 +84,7 @@ dev = [
8484
"vulture==2.11",
8585
"dead==1.5.2",
8686
# optional dependencies
87-
"kili-formats[all] == 0.2.11",
87+
"kili-formats[all] == 0.2.12",
8888
"opencv-python >= 4.0.0, < 5.0.0",
8989
"azure-storage-blob >= 12.0.0, < 13.0.0",
9090
# optional dependencies gis
@@ -96,14 +96,16 @@ dev = [
9696
# optional dependencies - yolo
9797
"pyyaml >= 6.0, < 7.0",
9898
# optional dependencies - image
99-
"Pillow >=9.0.0, <11.0.0"
99+
"Pillow >=12.0.0, <13.0.0; python_version >= '3.10'",
100+
"Pillow >=9.0.0, <12.0.0; python_version < '3.10'"
100101
]
101102
all = [
102103
# aggregate all optional deps without dev
103104
"azure-storage-blob >= 12.0.0, < 13.0.0",
104-
"kili-formats[all] == 0.2.11",
105+
"kili-formats[all] == 0.2.12",
105106
"opencv-python >= 4.0.0, < 5.0.0",
106-
"Pillow >=9.0.0, <11.0.0",
107+
"Pillow >=12.0.0, <13.0.0; python_version >= '3.10'",
108+
"Pillow >=9.0.0, <12.0.0; python_version < '3.10'",
107109
"pyproj == 3.6.1; python_version >= '3.9'",
108110
"pyproj >= 2.6.1, < 3; python_version < '3.9'",
109111
"pyyaml >= 6.0, < 7.0",
@@ -115,21 +117,22 @@ cli = [
115117
"tabulate >= 0.9.0, < 0.10.0"
116118
]
117119
coco = [
118-
"kili-formats[coco] == 0.2.11"
120+
"kili-formats[coco] == 0.2.12"
119121
]
120122
gis = [
121123
"pyproj >= 2.6.1, < 3; python_version < '3.9'",
122124
"pyproj == 3.6.1; python_version >= '3.9'",
123125
"shapely >= 1.8, < 3"
124126
]
125127
image = [
126-
"Pillow >=9.0.0, <11.0.0",
127-
"kili-formats[image] == 0.2.11"
128+
"Pillow >=12.0.0, <13.0.0; python_version >= '3.10'",
129+
"Pillow >=9.0.0, <12.0.0; python_version < '3.10'",
130+
"kili-formats[image] == 0.2.12"
128131
]
129132
image-utils = ["opencv-python >= 4.0.0, < 5.0.0"]
130133

131134
video = [
132-
"kili-formats[video] == 0.2.11"
135+
"kili-formats[video] == 0.2.12"
133136
]
134137
yolo = [
135138
"pyyaml >= 6.0, < 7.0"

0 commit comments

Comments
 (0)