From 4cb03d1131a43669912433b0a5c18596712add20 Mon Sep 17 00:00:00 2001 From: crunk Date: Mon, 20 May 2024 23:21:04 +0200 Subject: [PATCH] increase Pillow version number for python 3.11 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5e26dc..678064a 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import find_packages, setup -dependencies = ['pillow >= 6.1.0, < 8.4', 'python-magic >= 0.4.15, < 1.0'] +dependencies = ['pillow >= 10.3.0', 'python-magic >= 0.4.15, < 1.0'] with open('README.md', 'r') as handle: long_description = handle.read()