From 62ef5f90f4a315da2ea7dec890185b19d25b0219 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 21:26:23 +0000 Subject: [PATCH] chore: update pillow requirement from <12,>=11 to >=12.2.0,<13 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.0.0...12.2.0) --- updated-dependencies: - dependency-name: pillow dependency-version: 12.2.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 8163472..a52e4de 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,5 +5,5 @@ # Pure host-side: nothing here touches the device firmware; these just drive the USB-CDC ports. pyserial==3.5 # the USB-CDC transport for every host script (control + bridge ports) -Pillow>=11,<12 # OPTIONAL: only `hackagotchi_ctl.py shot` (OLED screenshot -> PNG) uses it; +Pillow>=12.2.0,<13 # OPTIONAL: only `hackagotchi_ctl.py shot` (OLED screenshot -> PNG) uses it; # without it `shot` falls back to a dependency-free .pgm. Safe to omit.