File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Python packages requirements
2
- Pillow ~= 11.0.0 # Image generation
3
2
pyserial ~= 3.5 # Serial link to communicate with the display
4
3
PyYAML ~= 6.0.2 # For themes files
5
4
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
10
uptime ~= 3.0.1 # For System Uptime
12
11
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
+
13
16
# Efficient image serialization
14
17
numpy ~= 1.24.4 ; python_version < "3.9" # For Python 3.8 max.
15
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
You can’t perform that action at this time.
0 commit comments