Bump minimum Python version to 3.9

This commit is contained in:
JonnyWong16 2024-11-16 15:21:41 -08:00
commit 5b47cebdc7
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ if [[ "$TAUTULLI_DOCKER" == "True" ]]; then
echo "Running Tautulli using user tautulli (uid=$(id -u tautulli)) and group tautulli (gid=$(id -g tautulli))"
exec gosu tautulli "$@"
else
python_versions=("python3.11" "python3.10" "python3.9" "python3.8" "python3" "python")
python_versions=("python3.11" "python3.10" "python3.9" "python3" "python")
for cmd in "${python_versions[@]}"; do
if command -v "$cmd" >/dev/null; then
echo "Starting Tautulli with $cmd."