From 2cf5916e2c4f23a751250e3cc44a37e09f018e7f Mon Sep 17 00:00:00 2001 From: Matthias Kestenholz Date: Mon, 18 Nov 2024 13:33:34 +0100 Subject: [PATCH] Mark Pillow 11.0.0 as incompatible --- CHANGELOG.rst | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5d26c1d..a379c84 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,6 +10,8 @@ Next version only ``True`` or an iterable were supported. - Dropped compatibility with Python 3.8 and 3.9. - Added Python 3.13. +- Excluded Pillow 11.0.0 from the list of supported Pillow versions, see + `#8535 `__. 0.19 (2024-08-03) diff --git a/pyproject.toml b/pyproject.toml index 96cbb1f..dd0c1f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dynamic = [ "version", ] dependencies = [ - "pillow>=9", + "pillow>=9,!=11", ] optional-dependencies.tests = [ "coverage",