We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ba1c1a commit 520c945Copy full SHA for 520c945
requirements.txt
@@ -11,7 +11,10 @@ uptime~=3.0.1 # For System Uptime
11
requests~=2.32.5 # HTTP library
12
ping3~=5.1.5 # ICMP ping implementation using raw socket
13
pyinstaller~=6.16.0 # bundles a Python application and all its dependencies into a single package
14
-Pillow~=12.0.0 # Image generation
+
15
+# Image generation
16
+Pillow~=11.3.0; python_version < "3.10" # For Python 3.9, only Pillow 11.x is supported
17
+Pillow~=12.0.0; python_version >= "3.10" # For Python 3.10+, any Pillow 12.x is fine
18
19
# Efficient image serialization
20
numpy~=2.0.2; python_version < "3.10" # For Python 3.9, only numpy 2.0.x is supported
0 commit comments