|
1 | 1 | # Python packages requirements |
2 | 2 | pyserial~=3.5 # Serial link to communicate with the display |
3 | 3 | PyYAML~=6.0.3 # For themes files |
4 | | -psutil~=7.2.1 # CPU / disk / network metrics |
| 4 | +psutil~=7.2.2 # CPU / disk / network metrics |
5 | 5 | pystray~=0.19.5 # Tray icon (all OS) |
6 | | -babel~=2.17.0 # Date/time formatting |
| 6 | +babel~=2.18.0 # Date/time formatting |
7 | 7 | ruamel.yaml~=0.19.1 # For configuration editor |
8 | 8 | sv-ttk~=2.6.1 # Tk Sun Valley theme for configuration editor |
9 | 9 | tkinter-tooltip~=3.1.2 # Tooltips for configuration editor |
10 | 10 | uptime~=3.0.1 # For System Uptime |
11 | 11 | requests~=2.32.5 # HTTP library |
12 | 12 | ping3~=5.1.5 # ICMP ping implementation using raw socket |
13 | | -pyinstaller~=6.18.0 # bundles a Python application and all its dependencies into a single package |
| 13 | +pyinstaller~=6.19.0 # bundles a Python application and all its dependencies into a single package |
14 | 14 |
|
15 | 15 | # Image generation |
16 | 16 | Pillow~=11.3.0; python_version < "3.10" # For Python 3.9, only Pillow 11.x is supported |
17 | | -Pillow~=12.1.0; python_version >= "3.10" # For Python 3.10+, any Pillow 12.x is fine |
| 17 | +Pillow~=12.1.1; python_version >= "3.10" # For Python 3.10+, any Pillow 12.x is fine |
18 | 18 |
|
19 | 19 | # Efficient image serialization |
20 | 20 | numpy~=2.0.2; python_version < "3.10" # For Python 3.9, only numpy 2.0.x is supported |
21 | 21 | numpy~=2.2.6; python_version == "3.10" # For Python 3.10, only numpy 2.2.x is supported |
22 | | -numpy~=2.4.1; python_version > "3.10" # For Python > 3.10, any numpy 2.x is fine |
| 22 | +numpy~=2.4.2; python_version > "3.10" # For Python > 3.10, any numpy 2.x is fine |
23 | 23 |
|
24 | 24 | # For Nvidia GPU on all platforms |
25 | 25 | GPUtil~=1.4.0; python_version < "3.12" |
|
0 commit comments