Clean up remaining Debian 10 references in comments

Co-authored-by: ShaYmez <76499782+ShaYmez@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-14 00:36:35 +00:00
parent e277e1da53
commit 4a7d71c339
2 changed files with 2 additions and 2 deletions

View File

@ -152,7 +152,7 @@ Within this installation includes the new HBMonv2 by Weldek SP2ONG
- The systemd service automatically uses the virtual environment's Python interpreter - The systemd service automatically uses the virtual environment's Python interpreter
- This approach eliminates "externally-managed-environment" errors and conflicts with system packages - This approach eliminates "externally-managed-environment" errors and conflicts with system packages
**Debian 10-11:** Standard pip installation to system Python is used for backward compatibility. **Debian 11:** Standard pip installation to system Python is used for backward compatibility, as PEP 668 restrictions don't apply to Debian 11.
This ensures clean, maintainable installations that follow modern Python best practices while maintaining compatibility with older Debian versions. This ensures clean, maintainable installations that follow modern Python best practices while maintaining compatibility with older Debian versions.

View File

@ -280,7 +280,7 @@ pip_install() {
return 1 return 1
fi fi
else else
# For Debian 10-11, use standard pip installation # For Debian 11, use standard pip installation (pre-PEP 668)
echo "Installing Python packages for Debian $VERSION: $args" echo "Installing Python packages for Debian $VERSION: $args"
if pip3 install $args; then if pip3 install $args; then
echo "Successfully installed: $args" echo "Successfully installed: $args"