Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ babel~=2.18.0 # Date/time formatting
ruamel.yaml~=0.19.1 # For configuration editor
sv-ttk~=2.6.1 # Tk Sun Valley theme for configuration editor
tkinter-tooltip~=3.1.2 # Tooltips for configuration editor
uptime~=3.0.1 # For System Uptime
requests~=2.32.5 # HTTP library
uptime~=3.0.1 # For System Uptime
ping3~=5.1.5 # ICMP ping implementation using raw socket
pyinstaller~=6.19.0 # bundles a Python application and all its dependencies into a single package

# HTTP library
requests~=2.32.5; python_version < "3.10"
requests~=2.33.1; python_version >= "3.10"

# Image generation
Pillow~=11.3.0; python_version < "3.10" # For Python 3.9, only Pillow 11.x is supported
Pillow~=12.2.0; python_version >= "3.10" # For Python 3.10+, any Pillow 12.x is fine
Expand Down
Loading