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 877b9e4 commit a46b546Copy full SHA for a46b546
1 file changed
requirements.txt
@@ -1,5 +1,4 @@
1
# Python packages requirements
2
-Pillow~=11.0.0 # Image generation
3
pyserial~=3.5 # Serial link to communicate with the display
4
PyYAML~=6.0.2 # For themes files
5
psutil~=6.1.0 # CPU / disk / network metrics
@@ -10,6 +9,10 @@ sv-ttk~=2.6.0 # Tk Sun Valley theme for configuration editor
10
9
tkinter-tooltip~=3.1.2 # Tooltips for configuration editor
11
uptime~=3.0.1 # For System Uptime
12
+# Image generation
13
+Pillow~=10.4.0; python_version < "3.9" # For Python 3.8 max.
14
+Pillow~=11.0.0; python_version >= "3.9" # For Python >=3.9
15
+
16
# Efficient image serialization
17
numpy~=1.24.4; python_version < "3.9" # For Python 3.8 max.
18
numpy~=2.0.0; python_version == "3.9" # For Python 3.9, only numpy 2.0.x is supported as 2.1 only supports Python >=3.10
0 commit comments