From 0ba1c1abcdbf02d16521265ab62c3da58cedbbe1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Oct 2025 07:56:31 +0000 Subject: [PATCH 1/2] :arrow_up: Update pillow requirement from ~=11.3.0 to ~=12.0.0 Updates the requirements on [pillow](https://github.com/python-pillow/Pillow) to permit the latest version. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/11.3.0...12.0.0) --- updated-dependencies: - dependency-name: pillow dependency-version: 12.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c7c61492..d33d94bc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,7 @@ uptime~=3.0.1 # For System Uptime requests~=2.32.5 # HTTP library ping3~=5.1.5 # ICMP ping implementation using raw socket pyinstaller~=6.16.0 # bundles a Python application and all its dependencies into a single package -Pillow~=11.3.0 # Image generation +Pillow~=12.0.0 # Image generation # Efficient image serialization numpy~=2.0.2; python_version < "3.10" # For Python 3.9, only numpy 2.0.x is supported From 520c945194ef8550bb35428e60476c47d1be7d73 Mon Sep 17 00:00:00 2001 From: Matthieu Houdebine Date: Mon, 27 Oct 2025 17:18:41 +0100 Subject: [PATCH 2/2] Separate Pillow versions for Python 3.9/3.10+ --- requirements.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d33d94bc..0829eb2a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,7 +11,10 @@ uptime~=3.0.1 # For System Uptime requests~=2.32.5 # HTTP library ping3~=5.1.5 # ICMP ping implementation using raw socket pyinstaller~=6.16.0 # bundles a Python application and all its dependencies into a single package -Pillow~=12.0.0 # Image generation + +# Image generation +Pillow~=11.3.0; python_version < "3.10" # For Python 3.9, only Pillow 11.x is supported +Pillow~=12.0.0; python_version >= "3.10" # For Python 3.10+, any Pillow 12.x is fine # Efficient image serialization numpy~=2.0.2; python_version < "3.10" # For Python 3.9, only numpy 2.0.x is supported