Compare commits

...

2 Commits

Author SHA1 Message Date
CanbiZ (MickLesk) a592688502 Install pytz in backend update script 2026-06-09 10:18:57 +02:00
CanbiZ (MickLesk) 819d6ce0fb endurain: Install pytz package during backend setup
Add pytz to the installation requirements for the backend.
2026-06-09 10:17:53 +02:00
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -64,6 +64,7 @@ function update_script() {
$STD poetry export -f requirements.txt --output requirements.txt --without-hashes
$STD uv venv --clear
$STD uv pip install -r requirements.txt
$STD uv pip install pytz
msg_ok "Backend Updated"
msg_info "Starting Service"
+1
View File
@@ -88,6 +88,7 @@ $STD poetry self add poetry-plugin-export
$STD poetry export -f requirements.txt --output requirements.txt --without-hashes
$STD uv venv --clear
$STD uv pip install -r requirements.txt
$STD uv pip install pytz
msg_ok "Setup Backend"
msg_info "Creating Service"