We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 080bf2f commit 5d6e039Copy full SHA for 5d6e039
setup.py
@@ -111,7 +111,8 @@ def get_dist(pkgname):
111
]
112
113
# Excluding 8.3.* because of https://github.com/pytorch/vision/issues/4934
114
- pillow_ver = " >= 5.3.0, !=8.3.*"
+ # TODO remove <11.3 bound and address corresponding deprecation warnings
115
+ pillow_ver = " >= 5.3.0, !=8.3.*, <11.3"
116
pillow_req = "pillow-simd" if get_dist("pillow-simd") is not None else "pillow"
117
requirements.append(pillow_req + pillow_ver)
118
0 commit comments