From f0237bfe6932a8a85f76d07f1cfb912b7b0fe6d4 Mon Sep 17 00:00:00 2001 From: Philip Meier Date: Wed, 18 Oct 2023 14:03:21 +0200 Subject: [PATCH] Revert "pin Pillow<10.1" This reverts commit 5d73fe233754beda95ba27de82c80bf9d47102f5. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ab0621338d3..ce67413f410 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ def write_version_file(): ] # Excluding 8.3.* because of https://github.com/pytorch/vision/issues/4934 -pillow_ver = " >= 5.3.0, !=8.3.*, < 10.1" +pillow_ver = " >= 5.3.0, !=8.3.*" pillow_req = "pillow-simd" if get_dist("pillow-simd") is not None else "pillow" requirements.append(pillow_req + pillow_ver)