@@ -7,19 +7,22 @@ babel~=2.18.0 # Date/time formatting
77ruamel.yaml ~= 0.19.1 # For configuration editor
88sv-ttk ~= 2.6.1 # Tk Sun Valley theme for configuration editor
99tkinter-tooltip ~= 3.1.2 # Tooltips for configuration editor
10- uptime ~= 3.0.1 # For System Uptime
11- requests ~= 2.32.5 # HTTP library
10+ uptime ~= 3.0.1 # For System Uptime
1211ping3 ~= 5.1.5 # ICMP ping implementation using raw socket
1312pyinstaller ~= 6.19.0 # bundles a Python application and all its dependencies into a single package
1413
14+ # HTTP library
15+ requests ~= 2.32.5 ; python_version < "3.10"
16+ requests ~= 2.33.1 ; python_version >= "3.10"
17+
1518# Image generation
1619Pillow ~= 11.3.0 ; python_version < "3.10" # For Python 3.9, only Pillow 11.x is supported
17- Pillow ~= 12.1.1 ; python_version >= "3.10" # For Python 3.10+, any Pillow 12.x is fine
20+ Pillow ~= 12.2.0 ; python_version >= "3.10" # For Python 3.10+, any Pillow 12.x is fine
1821
1922# Efficient image serialization
2023numpy ~= 2.0.2 ; python_version < "3.10" # For Python 3.9, only numpy 2.0.x is supported
2124numpy ~= 2.2.6 ; python_version == "3.10" # For Python 3.10, only numpy 2.2.x is supported
22- numpy ~= 2.4.2 ; python_version > "3.10" # For Python > 3.10, any numpy 2.x is fine
25+ numpy ~= 2.4.4 ; python_version > "3.10" # For Python > 3.10, any numpy 2.x is fine
2326
2427# For Nvidia GPU on all platforms
2528GPUtil ~= 1.4.0 ; python_version < "3.12"
0 commit comments